> ## Documentation Index
> Fetch the complete documentation index at: https://nevermined.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Export organization customers as CSV

> Streams the organization’s customers as a CSV file (text/csv, attachment), enriched with each customer’s name and email. Honors the same `status` and `search` filters as the list endpoint but is not paginated. Requires a Nevermined API key, organization admin privileges, and the Enterprise tier.



## OpenAPI

````yaml /api-reference/organizations-openapi.json get /organizations/{orgId}/customers/export
openapi: 3.0.0
info:
  title: Nevermined Organizations API
  description: >-
    Manage a Nevermined organization programmatically — members, tiers, groups &
    budgets, treasury wallets, customers, webhooks, analytics, and
    agent-discovery surfaces.
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.sandbox.nevermined.app/api/v1
    description: Sandbox
  - url: https://api.live.nevermined.app/api/v1
    description: Live
security: []
tags:
  - name: Organizations
    x-group: General
    description: Organization settings, members & roles, and workspace context.
  - name: Organizations - Billing
    x-group: Billing
    description: Tiers, subscriptions, invoices, checkout, and the public tier catalog.
  - name: Groups
    x-group: Groups & Budgets
    description: Organization groups, per-group budgets, and shared payment methods.
  - name: Organizations - Wallets
    x-group: Wallets
    description: Custodial stablecoin treasury wallets.
  - name: Organizations - Customers
    x-group: Customers
    description: The white-label customer CRM (Enterprise).
  - name: Organizations - Analytics
    x-group: Analytics
    description: Revenue, MRR, usage, conversion, and per-member metrics.
  - name: Organizations - Webhooks
    x-group: Webhooks
    description: Outbound webhook subscriptions and deliveries.
  - name: Organizations - Activity
    x-group: Activity
    description: The organization activity feed.
  - name: Organizations - Realtime
    x-group: Realtime
    description: Realtime WebSocket secret management (Enterprise).
  - name: Invitations
    x-group: Invitations
    description: Invite people to an organization.
  - name: Organizations - Integration
    x-group: Agent Discovery
    description: >-
      Public agent-discovery surfaces (llms.txt, agentic-instructions.md,
      ai-catalog.json).
paths:
  /organizations/{orgId}/customers/export:
    get:
      tags:
        - Organizations - Customers
      summary: Export organization customers as CSV
      description: >-
        Streams the organization’s customers as a CSV file (text/csv,
        attachment), enriched with each customer’s name and email. Honors the
        same `status` and `search` filters as the list endpoint but is not
        paginated. Requires a Nevermined API key, organization admin privileges,
        and the Enterprise tier.
      operationId: OrganizationCustomersController_export
      parameters:
        - name: orgId
          required: true
          in: path
          description: Organization ID
          schema:
            type: string
            example: org-abc123
        - name: status
          required: false
          in: query
          description: Filter exported customers by status.
          schema:
            $ref: '#/components/schemas/OrganizationCustomerStatus'
        - name: search
          required: false
          in: query
          description: Free-text search across customer identifiers.
          schema:
            type: string
      responses:
        '200':
          description: CSV file of the organization customers
        '401':
          description: Missing or invalid Nevermined API key
        '403':
          description: >-
            Caller is not an organization admin, or the org is not on the
            Enterprise tier
      security:
        - Authorization: []
components:
  schemas:
    OrganizationCustomerStatus:
      type: string
      enum:
        - active
        - blocked
  securitySchemes:
    Authorization:
      scheme: bearer
      bearerFormat: JWT
      type: http

````

## Related topics

- [Customers](/docs/solutions/organizations/customers.md)
- [White-label Customer Onboarding](/docs/solutions/organizations/white-label-onboarding.md)
- [Organizations](/docs/solutions/organizations/overview.md)
- [Get an organization customer](/docs/api-reference/organizations--customers/get-an-organization-customer.md)
- [Unblock an organization customer](/docs/api-reference/organizations--customers/unblock-an-organization-customer.md)
