English
cURL
curl --request GET \ --url https://api.altostrat.io/workspaces/{workspaceId}/members \ --header 'Authorization: Bearer <token>'
{ "data": [ { "user_id": "auth0|64f5a6b7c8d9e0f1a2b3c4d5", "workspace_id": "ws_a1b2c3d4e5f6g7h8", "role": "admin", "created_at": "2025-10-29T00:40:06.000000Z", "updated_at": "2025-10-29T00:40:06.000000Z" } ], "has_more": false }
Returns a list of users who are members of the specified workspace, including their roles.
Enter your JWT in the format: Bearer {token}
The ID of the workspace.
"ws_a1b2c3d4e5f6g7h8"
A list of workspace member objects.
Show child attributes
The unique identifier for the user (Auth0 sub).
sub
"auth0|64f5a6b7c8d9e0f1a2b3c4d5"
The ID of the workspace this membership belongs to.
The role of the user within the workspace.
owner
admin
viewer
"admin"
The timestamp when the member was added.
"2025-10-29T00:40:06.000000Z"
The timestamp when the member's role was last updated.
false
Was this page helpful?