Skip to main content

Search Users

POST 

/api/v1/users

Retrieve more users usingoffset parameter. Can also be used with filtering criteria such as email, first_name, etc.

REQUEST JSON

{
"email": "user@example.org",
"first_name": "FIRST NAME",
"last_name": "LAST NAME",
"enabled_only": false,
"offset": 0
}
ParameterTypeDescription
emailstringWildcards are not allowed, however partial email string such as user@example will be matched.
first_namestringWildcards are not allowed, partial string will be matched
last_namestringWildcards are not allowed, partial string will be matched
enabled_onlybooleanSet true to only retrieve enabled users
offsetnumberDefaults to 0. The record number to start from when retrieving users. Calculate this using total_users and the count of actual users retrieved in the request

Response JSON

{
"status": "OK",
"total_users": 60,
"count": 30,
"users": [
{USER_DATA_JSON}
]
}

Request

Responses

Successful operation