List platform users
const url = 'https://localhost:8080/api/v1/users';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://localhost:8080/api/v1/users \ --header 'Authorization: <Authorization>'Return a paginated list of platform users, optionally filtered by active status; restricted to organization owners
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ”Number of users to return (default: 100, max: 500)
Number of users to skip
Filter by active status
Responses
Section titled “ Responses ”List of users
A page of platform users, with the pagination window it was built from
object
The limit and offset slice a list response was built from, with the total available
object
A platform user as returned by the listing endpoints
object
Example generated
{ "pagination": { "limit": 1, "offset": 1 }, "total": 1, "users": [ { "active": true, "createdAt": "2026-04-15T12:00:00Z", "displayName": "example", "email": "example", "emailVerified": true, "familyName": "example", "givenName": "example", "id": "example", "isServiceAccount": true, "pictureUrl": "example", "username": "example" } ]}Bad request - Invalid active filter
Error body returned across the auth endpoints; the message is human-readable and not a stable identifier
object
Example
{ "error": "Unauthorized", "error_description": "Invalid token"}Unauthorized
Error body returned across the auth endpoints; the message is human-readable and not a stable identifier
object
Example
{ "error": "Unauthorized", "error_description": "Invalid token"}Forbidden - requires Organization Owner role
Error body returned across the auth endpoints; the message is human-readable and not a stable identifier
object
Example
{ "error": "Unauthorized", "error_description": "Invalid token"}Internal server error
Error body returned across the auth endpoints; the message is human-readable and not a stable identifier
object
Example
{ "error": "Unauthorized", "error_description": "Invalid token"}