GET
/
v1
/
orgs
/
self
/
memberships
curl --request GET \
  --url https://api.bland.ai/v1/orgs/self/memberships \
  --header 'authorization: <authorization>'
{
  "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
}


Headers

authorization
string
required

Your API key for authentication.

Response

data
array

A list of organizations the user belongs to.

data[].org_id
string

The unique identifier of the organization.

data[].org_slug
string

The unique slug identifier of the organization.

data[].org_display_name
string

The display name of the organization.

data[].permissions
string[]

The permissions assigned to the user within the organization.

Valid values: "owner", "admin", "operator", "viewer"

data[].is_owner
boolean

Whether the user is the owner of the organization.

data[].is_org_creator
boolean

Whether the user originally created the organization.

data[].joined_at
string (ISO 8601)

The timestamp of when the user joined the organization.

errors
null

Always null on success.

{
  "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
}