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

# List organization members

> Lists the active members and pending invites for a business organization. The org's own service account is never included.

The target org must be a business org you own (your own org or a direct child).



## OpenAPI

````yaml /openapi.json get /ramp/organization/{id}/member
openapi: 3.1.0
info:
  title: Etherfuse FX API
  description: Partner-facing ramp API for onramps, offramps, swaps, and KYC.
  license:
    name: Proprietary
  version: 1.0.0
servers:
  - url: https://api.sand.etherfuse.com
    description: Sandbox
security:
  - ApiKeyAuth: []
tags:
  - name: Authentication
    description: >-
      Partner JWT authentication — exchange a JWT for an access token, or launch
      a user into the app.
  - name: Lookup
    description: >-
      Public reference data: exchange rates, stablebonds, bond costs, country
      codes.
  - name: Assets
    description: Rampable stablecoins and stablebonds available per blockchain.
  - name: Onboarding
    description: Hosted and programmatic customer onboarding.
  - name: Bank Accounts
    description: Register and retrieve customer bank accounts.
  - name: Quotes
    description: Price quotes for onramps, offramps, and swaps.
  - name: Orders
    description: Create, track, and manage ramp orders.
  - name: Swaps
    description: Crypto-to-crypto swaps.
  - name: Sponsored
    description: Token approvals for sponsored (gasless) offramps.
  - name: Customers
    description: Customer (child-organization) records.
  - name: Wallets
    description: Register and manage customer wallets.
  - name: KYC
    description: Submit and check customer KYC status.
  - name: Webhooks
    description: Event notification subscriptions.
  - name: Organizations
    description: Organization identity, child orgs, and partner fees.
paths:
  /ramp/organization/{id}/member:
    get:
      tags:
        - Organizations
      summary: List organization members
      description: >-
        Lists the active members and pending invites for a business
        organization. The org's own service account is never included.


        The target org must be a business org you own (your own org or a direct
        child).
      operationId: partner_list_members
      parameters:
        - name: id
          in: path
          description: The business organization.
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Active members and pending invites
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MembersResponse'
        '403':
          description: Not permitted to view this organization
        '404':
          description: Organization not found
components:
  schemas:
    MembersResponse:
      type: object
      required:
        - members
        - invited
      properties:
        members:
          type: array
          description: Active members. The org's own service account is never listed.
          items:
            $ref: '#/components/schemas/MemberRecord'
        invited:
          type: array
          description: Pending invites that have not been accepted yet.
          items:
            $ref: '#/components/schemas/InvitedRecord'
      example:
        members:
          - customerId: 9f1c4b2a-7d3e-4c5f-8a6b-1e2d3c4b5a6f
            email: alice@acme.com
            role: admin
            joinedAt: '2026-06-17T00:00:00Z'
        invited:
          - email: bob@acme.com
            role: member
            invitedAt: '2026-06-17T00:00:00Z'
    MemberRecord:
      type: object
      required:
        - customerId
        - role
        - joinedAt
      properties:
        customerId:
          type: string
          description: >-
            The member's `sub`. Empty if the member does not yet have a `sub` in
            your namespace.
        email:
          type:
            - string
            - 'null'
          description: The member's email, if known.
        role:
          type: string
          enum:
            - admin
            - member
        joinedAt:
          type: string
          format: date-time
    InvitedRecord:
      type: object
      required:
        - email
        - role
        - invitedAt
      properties:
        email:
          type: string
        role:
          type: string
          enum:
            - admin
            - member
        invitedAt:
          type: string
          format: date-time
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: API key sent in the Authorization header.

````