v1
latestOpenAPI 3.1.02026-08-04164270844.7 KBUsers
List all users
🔑
Required OAuth scope: users:read.
📖
This endpoint is paginated with a page size of 500 users. For more information, see the Pagination guide.
Lists all users in your platform.
get/api/v2/users
Query parameters
Filter on mail property with LHS bracket notation.
Expected value format is a string.
{
"eq": "loremIpsum",
"ne": "loremIpsum",
"in": [
"loremIpsum"
],
"nin": [
"loremIpsum"
]
}Filter on username property with LHS bracket notation.
Expected value format is a string.
{
"eq": "loremIpsum",
"ne": "loremIpsum",
"in": [
"loremIpsum"
],
"nin": [
"loremIpsum"
]
}Filter on status property with LHS bracket notation.
Expected value format is a string (active, invited, deleted).
{
"eq": "active",
"ne": "active"
}Headers
360-api-version'v2.0' required
The version of the API.
Response
Returns one page of 500 users.
Example response
[
{
"_id": "507f1f77bcf86cd799439011",
"mail": "john.smith@yopmail.com",
"username": "johnsmith",
"firstName": "John",
"lastName": "Smith",
"job": "Engineer",
"organization": "360Learning",
"phone": "+33123456789",
"custom": "Half-time worker",
"primaryGroupId": "507f1f77bcf86cd799439011",
"profileImageId": "507f1f77bcf86cd799439011"
}
]