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

# Get Organization Members

> Retrieve the list of members in an organization.

### Headers

<ParamField header="authorization" type="string" required>
  Your API key for authentication.
</ParamField>

### Path Parameters

<ParamField path="org_id" type="string" required>
  The unique identifier of the organization whose members you want to retrieve.
</ParamField>

### Response

<ResponseField name="data" type="array">
  A list of members in the organization.
</ResponseField>

<ResponseField name="data.org_id" type="string">
  The unique identifier of the organization.
</ResponseField>

<ResponseField name="data.user_id" type="string">
  The unique identifier of the user.
</ResponseField>

<ResponseField name="data.permissions" type="array">
  The permissions assigned to the user within the organization.
</ResponseField>

<ResponseField name="data.is_owner" type="boolean">
  Indicates whether the user is the owner of the organization.
</ResponseField>

<ResponseField name="data.is_org_creator" type="boolean">
  Indicates whether the user originally created the organization.
</ResponseField>

<ResponseField name="data.joined_at" type="string (ISO 8601)">
  The timestamp of when the user joined the organization.
</ResponseField>

<ResponseField name="data.first_name" type="string">
  The first name of the organization member.
</ResponseField>

<ResponseField name="data.last_name" type="string">
  The last name of the organization member.
</ResponseField>

<ResponseField name="data.combo_id" type="string">
  A unique identifier combining the organization and user ID.
</ResponseField>

<ResponseField name="data.org_slug" type="string">
  The unique slug identifier of the organization.
</ResponseField>

<ResponseField name="data.org_display_name" type="string">
  The display name of the organization.
</ResponseField>

<ResponseField name="data.member_email" type="string">
  The email address of the organization member.
</ResponseField>

<ResponseField name="data.member_phone_number" type="string">
  The phone number of the organization member.
</ResponseField>

<ResponseField name="errors" type="null">
  Always `null` on success.
</ResponseField>

<ResponseExample>
  ```json Response   theme={null}
  {
    "data": [
      {
        "org_id": "d122b4cf-1614-4124-aa28-15f81a09988f",
        "user_id": "d6b149e1-f971-4641-8d28-64fdf78368af",
        "permissions": ["owner"],
        "is_owner": true,
        "is_org_creator": true,
        "joined_at": "2025-02-14T06:46:11.274Z",
        "first_name": "John",
        "last_name": "Smith",
        "combo_id": "d122b4cf-1614-4124-aa28-15f81a09988f::d6b149e1-f971-4641-8d28-64fdf78368af",
        "org_slug": "133906ea-d750-4a15-80fa-d6aef584dc58",
        "org_display_name": "Org Name",
        "member_email": "johnsmith@gmail.com",
        "member_phone_number": "+1234567890"
      }
    ],
    "errors": null
  }
  ```
</ResponseExample>

***

Docs for agents: [llms.txt](/llms.txt)
