Users
List users
Returns a paginated list of users. Supports filtering by email.
get/users
Query parameters
pageinteger
Page number (1-based)
Example:1
Page number (1-based)
sizeinteger
Number of items per page
Example:25
Number of items per page
emailstring email
Filter by exact email address
Filter by exact email address
Response
Paginated list of users
Example response
{
"data": [
{
"id": 1,
"email": "john@example.com",
"phoneNumber": "+33612345678",
"jobTitle": "Account Executive",
"jobDepartment": "Sales",
"role": "user",
"timezone": "Europe/Paris",
"createdOn": "2024-06-15T14:30:00.000Z",
"modifiedOn": "2024-06-15T15:00:00.000Z"
}
],
"pagination": {
"page": 1,
"size": 25,
"total": 100
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.