Skip to main content
GET
/
orgs
/
{org_id}
/
members
List Members
curl --request GET \
  --url https://api.example.com/orgs/{org_id}/members \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "user_id": "<string>",
    "role": "<string>",
    "created_at": "<string>",
    "email": "<string>",
    "full_name": "<string>",
    "invited_by": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

org_id
string
required

Response

Successful Response

id
string
required
user_id
string
required
role
string
required
created_at
string
required
email
string | null
full_name
string | null
invited_by
string | null