List Users
Paginated list of all user details for the current organization.
Request schema
Query parameters
Designates which page of results to return. Always starts at 1. If 0 is specified, it defaults to 1.
Determines the number of results on each page. It can't exceed 100.
Determines the order of the results. It can be 'asc' or 'desc'.
Header parameters
HTTP: basicAuth
HTTP AuthorizationScheme: basic
GET /api/v1/users?page=SOME_NUMBER_VALUE&per_page=SOME_NUMBER_VALUE&order=SOME_STRING_VALUE HTTP/1.1 Authorization: Bearer REPLACE_BEARER_TOKEN Host: app.getcensus.com
Responses
200
The outcome of the request
[Legacy] URL for the next page of resources
Total count of records in the collection.
Record count to return for each request.
The previous page number, or null for the first page.
The current page number returned in this request.
The next page number, or null if it's the last page.
The number of the last page with records.
Unique identifier for the user.
User's email address.
Timestamp of user account creation.
User's role in the organization.
additional property
{ "status": "success", "next": "https://app.getcensus.com/api/v1/syncs?page=2&per_page=25", "pagination": { "total_records": 100, "per_page": 25, "prev_page": 1, "page": 2, "next_page": 3, "last_page": 4 }, "data": [ { "id": 0, "email": "john.doe@example.com", "created_at": "2023-08-20T10:00:00Z", "role": "admin" } ] }