Paginated list of sub-users on the account (page, limit, optional search).
Request
Add parameter in header API-key
Example:API-key: ********************
Request Code Samples
curl --location --request GET 'https://mijn.host/api/v2/account/users/?page&limit&search' \
--header 'Accept: application/json' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-key: <api-key>' \
--header 'Content-Type: application/json'
Responses
application/json {
"status": 0,
"status_description": "string",
"data": {
"users": [
{
"id": 0,
"username": "string",
"two_factor": true
}
],
"pagination": {
"page": 0,
"limit": 0,
"total": 0,
"total_pages": 0
}
}
}
Modified at 2026-04-09 12:56:00