v1
latestOpenAPI 3.0.02026-07-2482421001.1 KBList users
This API returns a paginated list of Dashboard members in your organization. Use this endpoint to review existing users, filter by manager status, or sort results by ID or email.
Query parameters
The number of records to skip before returning results. Used for pagination. Defaults to 0 if not specified.
The maximum number of records to return per page, starting from the specified offset value. Defaults to 50 if not specified.
Use this parameter to narrow results by manager status. Set to true to return only users with manager permissions, or false to return only standard users. If not provided, all users in your organization are returned regardless of their manager status.
The field to use when sorting the list of users. Use id to sort by the user's unique identifier, or email to sort alphabetically by email address. Defaults to id if not specified.
The sort direction for the results. Use asc for ascending order or desc for descending order. Defaults to asc if not specified.
Response
Users retrieved successfully
Example response
{
"users": [
{
"id": 1042,
"email": "jane.doe@example.com",
"first_name": "Jane",
"last_name": "Doe"
}
],
"total": 2,
"limit": 50
}