v1

latestOpenAPI 3.0.02026-07-26870415.2 KB
workspaces

List workspace users

Returns workspace members and their user ids for the current token.

get/v1/workspaces/{id}/users

Path parameters

idstring required

Workspace identifier.

Example:j57demo8f8x7c9v0n2q4r6t8y1u3i5o

Query parameters

limitinteger
cursorstring

Response

Workspace users

next_cursorstring nullable required
has_moreboolean required

Example response

{
  "data": [
    {
      "id": "m48k3v7p2q9x5t1w8r6n4j0y3u2i5o7a",
      "email": "member@example.com",
      "first_name": "Member",
      "last_name": "User",
      "role": "Member",
      "picture_url": null
    }
  ],
  "next_cursor": "page-token",
  "has_more": true
}