Get list of managed users
https://{server-hostname}:8383/api/v1/mdm/users
MDMUser.READCopied!
Authorization: d92d4xxxxxxxxxxxxx15f52
Maximum number of records to return in a single response. Used together with offset for pagination
Pagination continuation token returned by a previous response. Pass it to fetch the next page of results
Zero-based index of the first record to return. Used together with limit for pagination
Token used for delta/incremental fetches. Pass the token returned from a previous response to retrieve only items modified since that point
Free-text search string applied to the default searchable fields of the resource
Comma-separated list of related fields to include in the response (e.g., assigned_to, payload_details). When omitted, only top-level fields are returned
When true, applies the operation to every record matching the current filter rather than to specific IDs. Default: false
Filter results by user type. Allowed values: 1=Domain User, 2=Local User, 3=Active Directory User, 4=Azure AD User
curl --request GET \
--url 'https://appdomain/api/v1/mdm/users?limit=SOME_INTEGER_VALUE&skip-token=SOME_STRING_VALUE&offset=SOME_INTEGER_VALUE&delta-token=SOME_STRING_VALUE&search=SOME_STRING_VALUE&user_identifier=SOME_STRING_VALUE&include=SOME_STRING_VALUE&select_all=SOME_BOOLEAN_VALUE&user_type=SOME_STRING_VALUE' \
--header 'Accept: application/json' \
--header 'Authorization: d92d4xxxxxxxxxxxxx15f52'Array of managed user objects
Email address of the user
Unique identifier of the user
Name of the managed user
Phone number of the managed user
Domain of the user
Number of devices currently assigned to this user
Metadata about the result set including total record count
Total number of user records matching the query
Pagination links for navigating result pages
URL for the next page of results, or null if this is the last page
List of managed users with pagination
{
"metadata": {
"total_record_count": "2"
},
"paging": {
"next": "https://appDomain/api/v1/mdm/users?skip-token=NDo1OjE6MTU2ODcyMzM5NjUwOQ%3D%3D"
},
"users": [
{
"user_email": "email_address@zylker.com",
"domain_name": "mdm",
"user_id": "9007199254740999",
"user_name": "admin",
"phone_number": "+1-555-0****99",
"device_count": 0
},
{
"user_email": "john.doe@zylker.com",
"domain_name": "mdm",
"user_id": "9007199254741000",
"user_name": "Zylker User",
"phone_number": "+1-555-****12",
"device_count": 2
}
]
}
No managed users found
{
"metadata": {
"total_record_count": "0"
},
"paging": {},
"users": []
}
![]()
Duration: 1 minute | Threshold: 120 | Lock period: 5 minutes
Duration - Time window for the threshold.
Threshold - Number of API calls allowed within the specified duration.
Lock Period - Wait time before consecutive API requests.
© 2026, Zoho Corporation Pvt. Ltd. All Rights Reserved.
© 2026, Zoho Corporation Pvt. Ltd. All Rights Reserved.