Retrieves a paginated list of all users configured in the organization, including their login ID, role, email, phone number, creation time, and account status. Supports page-based pagination.
https://{serverurl}/emsapi/users/info
Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52
Page number for pagination. Starts from 1. Returns the first page if not specified.
Maximum number of user records to return per page. Uses system default of 25 if not specified.The maximum allowed value is 1000.
curl --request GET \
--url https://appdomains/emsapi/users/info \
--header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52'Pagination metadata describing the current page and limit applied.
Maximum number of user records returned per page as specified in the request.
Current page number of the paginated result as specified in the request.
Total number of user records available in the organization across all pages.
Paginated list of user detail objects returned for the current page.
Timestamp when the user account was created (e.g., 'Nov 3, 2025 12:26 PM').
Unique login identifier for the user.
Timestamp when the user account was last modified.
Unique identifier of the role assigned to the user.
Phone number of the user.
Name of the role assigned to the user (e.g., 'Administrator', 'Technician').
Email address of the user.
Username used for login.
Account status of the user ('1' = active).
Total number of pages available based on totalRecords and the current page limit.
Navigation links for moving to the next or previous page of results.
URL path to the next page of results. null when the current page is the last page.
URL path to the previous page of results. null when the current page is the first page.
Response status. 'success' confirms the user list was fetched successfully.
Page 1 of users with the default limit of 25. Links.next and Links.prev are null when only one page exists.
{
"metadata": {
"limit": 25,
"page": 1
},
"totalRecords": "3",
"messageResponse": [
{
"creation_time": "Nov 3, 2025 12:26 PM",
"login_id": "9502000000134133",
"modified_time": "Nov 3, 2025 12:26 PM",
"um_role_id": "9502000000014452",
"phonenumber": "12312312131",
"um_role_name": "Security Auditor",
"email": "alex.morgan@example.com",
"username": "alex.morgan",
"status": "1"
},
{
"creation_time": "Nov 3, 2025 12:26 PM",
"login_id": "9502000000122681",
"modified_time": "Nov 3, 2025 12:26 PM",
"um_role_id": "9502000000014452",
"phonenumber": "1231231231",
"um_role_name": "Endpoint Administrator",
"email": "jamie.chen@example.com",
"username": "jamie.chen",
"status": "1"
},
{
"creation_time": "Nov 3, 2025 12:26 PM",
"login_id": "9502000000120677",
"modified_time": "Nov 3, 2025 12:26 PM",
"um_role_id": "9502000000014452",
"phonenumber": "",
"um_role_name": "Service Desk Operator",
"email": "service.desk@example.com",
"username": "service.desk",
"status": "1"
}
],
"totalPages": 1,
"Links": {
"next": null,
"prev": null
},
"status": "success"
}
Page 2 result when multiple pages exist. Links.prev points to page 1; Links.next is null on the last page.
{
"metadata": {
"limit": 25,
"page": 2
},
"totalRecords": "30",
"messageResponse": [
{
"creation_time": "Nov 5, 2025 09:10 AM",
"login_id": "9502000000145001",
"modified_time": "Nov 5, 2025 09:10 AM",
"um_role_id": "9502000000014453",
"phonenumber": "",
"um_role_name": "Endpoint Technician",
"email": "priya.shah@example.com",
"username": "priya.shah",
"status": "1"
}
],
"totalPages": 2,
"Links": {
"next": null,
"prev": "/emsapi/users/info?page=1&pageLimit=25"
},
"status": "success"
}
![]()
Duration: 1 minute | Threshold: 30 | 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.