Skip to main content

Method

GET /v1/workspaces/:id/members

Path Parameters

id
uuid
required
Workspace identifier (must match API key workspace).

Headers

Authorization
string
Bearer token with workspaces:read scope.

Request Example

curl "https://api.voyantcloud.com/v1/workspaces/ws_abc/members" \
  -H "Authorization: Bearer $VOYANT_API_KEY"

Response

{
  "data": [
    {
      "id": "usr_123",
      "email": "[email protected]",
      "name": "Ana Ionescu",
      "role": "admin"
    },
    {
      "id": "usr_456",
      "email": "[email protected]",
      "name": "Mihai Popescu",
      "role": "member"
    }
  ]
}
The list is derived from both the control plane and primary database to ensure roles are up to date. Use it to power admin UIs or access audits.