Skip to content

List Members

Returns a list of all members belonging to the authenticated workspace. Membership is managed via Keycloak Organizations; this endpoint provides a read-only view.

GET /v1/workspace/members
workspace:read

Request Examples

Terminal window
curl -X GET https://xqr.co/api/v1/workspace/members \
-H "Authorization: Bearer xqr_pk_a1b2c3d4.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

Response

200 OK

An array of member objects.

{
"data": [
{
"id": "usr_a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"email": "alice@example.com",
"name": "Alice Johnson"
},
{
"id": "usr_f7e8d9c0-b1a2-3456-7890-abcdef123456",
"email": "bob@example.com",
"name": "Bob Smith"
}
],
"meta": {
"request_id": "req_7a8b9c0d1e2f3a45",
"rate_limit": {
"limit": 600,
"remaining": 597,
"reset": 1742572800
}
}
}

Was this page helpful?