/api/v6/account/usersUsers
Organization members, with role, cost center and status.
Scope and limits
API key with the directory capability granted
30 requests per minute
- Pagination with
limit(default 20, max 100) andoffset(default 0). The response carriesdata.itemsanddata.pagination.
Organization users (members), with their role, cost center and status. It contains personal data: treat it as such in your own systems.
Pagination with limit (default 20, max 100) and offset (default 0). The response carries data.items and data.pagination.
Includes personal data
The API key must have the directory capability explicitly enabled. Access to all services does NOT grant it. A key without the capability gets 403.
Query parameters
limitDefault: 20
offsetDefault: 0
statusResponses
Page of users.
{
"success": true,
"data": {
"items": [
{
"userId": 10000,
"firstName": "Diego",
"lastName": "Pérez",
"email": "dev@acme.co",
"roles": ["owner"],
"costCenterId": 17,
"status": "active",
"joinedAt": "2026-05-14 11:31:56",
"lastUsedAt": "2026-06-02 09:00:00"
}
],
"pagination": { "limit": 20, "offset": 0, "returned": 1, "hasMore": false }
},
"meta": {
"requestId": "b9b1704baffab21150213c02fd853975",
"timestamp": "2026-06-02T19:43:59+00:00",
"responseTimeMs": 4.1
}
}Invalid or missing credentials.
The API key lacks the required capability, or the organization cannot run the request.
Request limit exceeded.
Possible errors
Codes this endpoint can return in error.code. The full detail lives in the catalog.
AUTH_REQUIREDNo Bearer token was sent, and every call requires one.401AUTH_INVALID_KEYThe API key is not recognized: wrong format, revoked or expired.401AUTH_SERVICE_NOT_ALLOWEDThe key is not allowed to use the service behind this endpoint.403ACCOUNT_NOT_ACTIVEYour organization is suspended or closed.403ACCOUNT_BLOCKEDA full block is active: every call is rejected.403ACCOUNT_CONFIG_NOT_FOUNDWe could not load the organization behind your key.403FORBIDDENGeneric 403: fallback when no `ACCOUNT_*` applies.429RATE_TPS_EXCEEDEDYou exceeded your organization quota for this endpoint.