Skip to main content
GET
/
members
List organization members
curl --request GET \
  --url http://localhost:3000/api/v1/members \
  --header 'x-api-key: <api-key>'
{
"members": [
{
"id": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"email": "[email protected]",
"avatarUrl": "<string>",
"roles": [
"admin"
],
"status": "active",
"department": "<string>",
"joinedAt": "2023-11-07T05:31:56Z"
}
]
}

Authorizations

x-api-key
string
header
required

API key for authentication. Format: ak_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Response

Successful response

members
object[]