v53

latestOpenAPI 3.1.1raw.githubusercontent.com2026-07-264065213.4 KB
Users

List users

List all users for an account with cursor-based pagination.

get/accounts/{account_id}/users

Path parameters

account_idstring required

The account ID to list users for.

Example:acct_01j9a43avnfqzbjfch6pygv1td

Query parameters

afterstring

Cursor for forward pagination. Use the next_cursor from a previous response.

beforestring

Cursor for backward pagination. Use the previous_cursor from a previous response.

Response

List of users

Example response

{
  "data": [
    {
      "first_name": "Brian",
      "id": "usr_01j9dwavghe1ttppewekjjkfrx",
      "last_name": "O'Conner",
      "metadata": {
        "email": "boconner@toretti.family",
        "user_id": "1234"
      },
      "photo_url": "https://toretti.family/people/brian.jpg"
    }
  ],
  "pagination": {
    "next_cursor": "g3QAAAABZAACaWRtAAAAGnBuXzAxamtzY2s5eDdkeW0wZnBxZjdjYmRyeQ==",
    "previous_cursor": null
  }
}