Skip to main content
GET
https://api.unify.ai
/
v0
/
organizations
/
members
curl --request GET \
  --url 'https://api.unify.ai/v0/organizations/members' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "id": "integer",
    "user_id": "string",
    "organization_id": "integer",
    "role_id": "integer",
    "role_name": "string | null",
    "created_at": "string",
    "name": "string | null",
    "email": "string | null",
    "image": "string | null",
    "bio": "string | null",
    "timezone": "string | null",
    "phone_number": "string | null"
}
List all members of the organization associated with the API key. For org API key: Returns all members with their roles. For personal API key: Returns empty list.

Authorizations

Authorization
string
required
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
  --url 'https://api.unify.ai/v0/organizations/members' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "id": "integer",
    "user_id": "string",
    "organization_id": "integer",
    "role_id": "integer",
    "role_name": "string | null",
    "created_at": "string",
    "name": "string | null",
    "email": "string | null",
    "image": "string | null",
    "bio": "string | null",
    "timezone": "string | null",
    "phone_number": "string | null"
}