Workspace Users
Fetch Workspace Users
GET
Workspace users
GET
/user-api/v1/workspace-users
Headers
Header | Value |
---|---|
x-rolodex-api-key | f1e2d3c4b5a697... |
Query Parameters
Set a limit to the number of records to return (Default:25)
Number of records to skip
Sort order: created_at:asc
, created_at:desc
Response
With Pagination
GET
/user-api/v1/workspace-users?limit=5&offset=10&order_by=created_at:desc
Response with pagination
GET
a Workspace user
GET
/user-api/v1/workspace-users/:id
Headers
Header | Value |
---|---|
x-rolodex-api-key | f1e2d3c4b5a697... |
Path Parameters
Workspace User ID
Endpoint Example
GET
/user-api/v1/workspace-users/workspace_user_12345
Response
User Roles
Role | Description |
---|---|
ADMIN | Administrative privileges - can manage workspace settings and users |
USER | Standard user privileges - default role for new workspace users |
Response Fields
Field | Type | Description |
---|---|---|
id | string | Unique workspace user identifier |
workspace_id | string | Workspace identifier |
full_name | string | User’s full name |
first_name | string | User’s first name |
last_name | string | User’s last name |
email | string | User’s email address |
avatar_url | string|null | URL to user’s avatar image |
role | string | User’s role in the workspace (ADMIN or USER ) |
created_at | string | ISO datetime when user was added to workspace |