Pageable User Listing Operation
curl --request POST \
--url https://api.iklim.co/v1/users/page \
--header 'Content-Type: application/json' \
--data '{
"roles": "['\''API_USER'\'', '\''STANDARD_USER'\'']",
"status": "['\''INACTIVE'\'', '\''BLOCKED'\'', '\''EXPIRED'\'']",
"sortBy": {
"username": "asc",
"status": "desc"
},
"pageNumber": 0,
"pageSize": 10,
"includeAccount": false
}'
{
"users": [
{
"userId": "8e94a551-5b86-40ba-ae55-b019dee5cc25",
"username": "name@domain.com",
"firstName": "John",
"midName": "Bob",
"lastName": "Doe",
"locale": "tr_TR",
"timezone": "Europe/Istanbul",
"roles": "API_USER",
"status": "INACTIVE",
"account": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "INDIVIDUAL",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"mobilePhoneNumber": "<string>",
"location": "<string>",
"company": "<string>",
"industry": "<string>",
"profilePictureUrl": "<string>",
"subscriptionPlan": "NONE",
"emailVerified": true,
"mobilePhoneNumberVerified": true
}
}
],
"totalRecords": 123,
"pageNumber": 123,
"pageSize": 123
}