> ## 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 User Organization Memberships

> Retrieve a list of organizations the authenticated user is a member of.

### Headers

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

### Response

<ResponseField name="data" type="array">
  A list of organizations the user belongs to.
</ResponseField>

<ResponseField name="data[].org_id" type="string">
  The unique identifier of the organization.
</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[].permissions" type="string[]">
  The permissions assigned to the user within the organization.\
  <br />Valid values: `"owner"`, `"admin"`, `"operator"`, `"viewer"`
</ResponseField>

<ResponseField name="data[].is_owner" type="boolean">
  Whether the user is the owner of the organization.
</ResponseField>

<ResponseField name="data[].is_org_creator" type="boolean">
  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="errors" type="null">
  Always `null` on success.
</ResponseField>

<ResponseExample>
  ```json Response   theme={null}
  {
    "data": [
      {
        "org_id": "d6b149e1-f971-4641-8d28-64fdf78368af",
        "org_slug": "a7d49dbc-025c-4e80-9c92-c45c519f4939",
        "org_display_name": "Org Name",
        "permissions": ["owner"],
        "is_owner": true,
        "is_org_creator": true,
        "joined_at": "2024-11-14T21:28:05.915Z"
      },
      {
        "org_id": "d122b4cf-1614-4124-aa28-15f81a09988f",
        "org_slug": "133906ea-d750-4a15-80fa-d6aef584dc58",
        "org_display_name": "Org Name2",
        "permissions": ["owner"],
        "is_owner": true,
        "is_org_creator": true,
        "joined_at": "2025-02-14T06:46:11.274Z"
      }
    ],
    "errors": null
  }


  ```
</ResponseExample>

***

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