Users
The Users API provides access to a list of users within a tenant. This API supports filtering, pagination, and sorting.
API Endpoint
Query Parameters
orderByDescending
boolean
Whether to sort results in descending order
true
orderByProperty
string
Field to sort by
createdAt
pageSize
number
Number of results per page
20
pageNumber
number
Page number for pagination
1
fromDate
string
Filter users created from this date (optional)
null
toDate
string
Filter users created up to this date (optional)
null
searchText
string
Search term for user filtering (optional)
null
Authentication Requirements
All requests must include authentication credentials.
Authorization Header: Pass the API key and secret as
<API_KEY>:<API_SECRET>
.Enterprise-ID Header: Required for impersonation when accessing user-specific data.
Example Request
Example Response
Impersonation
If you need to perform operations as a specific user, include the enterprise-id
header in your requests. This allows tenant administrators to access user-specific data and perform actions on behalf of users.
Last updated