List users
GET
/usersLists the members of your organization.
Scope users:read
Query parameters
page[limit]integerNumber of records to return. Defaults to 50, maximum 100.
page[after]stringCursor from the previous page’s pagination.next_cursor.
Returns
Returns 200 OK with a data array of User objects and a pagination object. See pagination.
Errors
Failed requests return application/problem+json problem details. The errors specific to this endpoint:
| Status | Code | Meaning |
|---|---|---|
| 400 | invalid_request | The request is malformed, such as invalid JSON. |
| 401 | unauthorized | The API key is missing, revoked, or invalid. |
| 403 | insufficient_scope | The key lacks the required scope. |
| 429 | rate_limited | Too many requests. Retry after Retry-After seconds. |
Last updated on