cURL
curl --request GET \ --url https://api.mudstack.com/workspaces/members \ --header 'Authorization: Bearer <token>' \ --header 'x-account-id: <x-account-id>' \ --header 'x-workspace-id: <x-workspace-id>'
[ { "workspace_id": "<string>", "user_id": "<string>", "roles": [ "<string>" ], "user": { "id": "<string>", "auth0UserID": "<string>", "username": "<string>", "email": "<string>", "firstName": "<string>", "lastName": "<string>", "avatar_file_id": "<string>", "defaultAvatar": 123, "industry": "<string>", "occupation": "<string>", "company": "<string>", "emailVerified": true, "isActive": true, "city": "<string>", "state": "<string>", "country": "<string>", "zipCode": "<string>", "invited_by_user": {} } } ]
Retrieve a list of members in the workspace.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
A list of workspace members
The ID of the workspace.
The ID of the user.
The roles assigned to the user in the workspace.
The user details.
Show child attributes
Was this page helpful?