cURL
curl --request GET \ --url https://api.exec.com/rest/v1/workspace/members \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "m1n2o3p4q5r6", "user": { "id": "u7v8w9x0y1z2", "email": "[email protected]", "first_name": "Jane", "last_name": "Smith" }, "role": "admin", "created_at": "2024-01-15T10:30:00Z" } ], "pagination": { "page": 1, "page_size": 50, "total_count": 25, "total_pages": 1 } }
Returns a paginated list of workspace members with basic user info.
API key created in Settings > API.
Format: exec_live_ followed by 40 alphanumeric characters.
exec_live_
Page number (1-indexed)
x >= 1
Number of results per page (max 100)
1 <= x <= 100
List of workspace members
Show child attributes