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

Headers

authorization
string
required
Your API key for authentication.

Path Parameters

org_id
string
required
The unique identifier of the organization whose members you want to retrieve.

Response

data
array
A list of members in the organization.
data.org_id
string
The unique identifier of the organization.
data.user_id
string
The unique identifier of the user.
data.permissions
array
The permissions assigned to the user within the organization.
data.is_owner
boolean
Indicates whether the user is the owner of the organization.
data.is_org_creator
boolean
Indicates whether the user originally created the organization.
data.joined_at
string (ISO 8601)
The timestamp of when the user joined the organization.
data.first_name
string
The first name of the organization member.
data.last_name
string
The last name of the organization member.
data.combo_id
string
A unique identifier combining the organization and user ID.
data.org_slug
string
The unique slug identifier of the organization.
data.org_display_name
string
The display name of the organization.
data.member_email
string
The email address of the organization member.
data.member_phone_number
string
The phone number of the organization member.
errors
null
Always null on success.
{
  "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
}