v1

latestOpenAPI 3.1.02026-07-2617125852.3 KB
WorkspaceMember

List workspace member

Requires one of the following scopes: workspace_members:read, workspace_members:all, all:read, all:all

get/api/v2/workspace-members

Query parameters

limitinteger
Example:10

The number of items to return

starting_afterstring
Example:01956fbd-0eb1-72db-a565-82977a586084

The ID of the last item in the previous page - used for pagination. You can use the value of the next_starting_after field from the previous response.

acceptedboolean
Example:true

Filter workspace members by invitation acceptance status

searchstring
Example:John

Search by name or email

Response

The list of Workspace Member

next_starting_afterstring

The filter for getting the next items after this one, this could either be a UUID, a timestamp, on an email depending on the specific API

Example response

{
  "items": [
    {
      "id": "019f94cd-83fa-704b-a013-af8dc24b51ef",
      "email": "user@example.com",
      "user_id": "019f94cd-83fa-704b-a013-af8e479c3d70",
      "user_email": "user@example.com",
      "nickname": "Finance lead",
      "name": {
        "first": "John",
        "last": "Smith"
      },
      "role": "editor",
      "timestamp_created": "2026-07-24T15:45:24.474Z",
      "workspace_id": "019f94cd-83fa-704b-a013-af8f70cf7b25",
      "issuer_id": "019f94cd-83fa-704b-a013-af9030155d6f",
      "permissions": [
        "unibox.all"
      ]
    }
  ],
  "next_starting_after": "019f94cd-afbb-79c4-835f-1ccef0732e34"
}