Skip to main content

Retrieve Users

GET 

/api/v1/users

User Administrator can retrieve all users within their user group. A maximum of 30 users can be retrieved in one request. Use the total_users and offset parameter to retrieve more users.

RESPONSE JSON

{
"status": "OK",
"total_users": 60,
"count": 30,
"users": [
{USER_DATA_JSON}
]
}
KeyValueDescription
statusstringOK if request was successfully received, ERROR if request cannot be processed
total_usersnumberTotal users in the user group
countnumberUsers in the response
usersListList of User JSON

Responses

Successful operation