Skip to main content
GET
/
workspaces
/
{workspace_id}
/
users
List Workspace Users
curl --request GET \
  --url https://api.example.com/workspaces/{workspace_id}/users

GET /workspaces//users

Returns the list of users who belong to the specified workspace, including their roles.

Notes

  • Requires a valid JWT (any role).
  • You can only list users for the workspace you are currently authenticated into. Attempting to access a different workspace returns 403.
  • The workspace_id path parameter is an integer.
  • See POST /users to add a new user to the workspace.