Get the list of certificates uploaded to the MDM certificate repository. Supports filtering by name, identity type, and certificate type with cursor-based pagination.
get /api/v1/mdm/profiles/certificates
https://{serverurl}/api/v1/mdm/profiles/certificates
MDMOnDemand.MDMDeviceMgmt.READCopied!
Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52
Maximum number of records to return in a single response. Used together with offset for pagination
Pagination skip token for cursor-based pagination
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
Filter certificates by display name (case-insensitive contains match)
If true, returns only identity certificates (those with a private key). If false, returns non-identity certificates
If true, omits distribution details from the response
Filter by certificate type. Default 0 (CA uploaded certificate). Use 3 for macOS FileVault institutional recovery certificates
curl --request GET \
--url https://appdomain/api/v1/mdm/profiles/certificates \
--header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52'Array of certificate objects matching the query filters
Unique identifier of the certificate
Display name of the certificate (typically the CN from the subject DN)
Serial number of the certificate
Full Subject Distinguished Name of the certificate
Full Issuer Distinguished Name of the certificate
Certificate validity start time in Unix milliseconds
Certificate expiry time in Unix milliseconds
Organization name extracted from the certificate subject
Organization name of the certificate issuer
Common Name (CN) of the certificate issuer
Original filename of the uploaded certificate file
Number of days until the certificate expires
true if the certificate is an identity certificate (has a private key / password), false otherwise
Pagination metadata including total record count
Total number of certificates matching the query
Pagination links for navigating result pages. Present only when results are paginated
URL to fetch the next page of results
URL to fetch the previous page of results
List of certificates with pagination metadata
{
"metadata": {
"total_record_count": "7"
},
"certificates": [
{
"days_to_expire": "343",
"certificate_name": "APSP:99335a61-7acc-42a0-87fd-f564d36e2166",
"is_identity": false,
"certificate_notafter": "1572518494000",
"certificate_org": "",
"issuer_name": "Apple Application Integration 2 Certification Authority",
"certificate_id": "9007199254741001",
"certificate_issuer_dn": "C=US,O=Apple Inc.,OU=Apple Certification Authority,CN=Apple Application Integration 2 Certification Authority",
"issuer_org": "Apple Inc.",
"certificate_notbefore": "1540982494000",
"certificate_subject_dn": "C=US, CN=APSP:99335a61-7acc-42a0-87fd-f564d36e2166, UID=com.apple.mgmt.External.99335a61-7acc-42a0-87fd-f564d36e2166",
"certificate_file_name": "MDM__Zylker_Inc_Certificate__5_.pem",
"certificate_serial_number": "7565549844070638883"
},
{
"days_to_expire": "7305",
"certificate_name": "ZylkerCA",
"is_identity": false,
"certificate_notafter": "2174000445000",
"certificate_org": "Zylker Inc",
"issuer_name": "ZylkerCA",
"certificate_id": "9007199254741007",
"certificate_issuer_dn": "CN=ZylkerCA,O=Zylker Inc,OU=Zylker IT,ST=CA,C=US",
"issuer_org": "Zylker Inc",
"certificate_notbefore": "1542848445000",
"certificate_subject_dn": "CN=ZylkerCA, O=Zylker Inc, OU=Zylker IT, ST=CA, C=US",
"certificate_file_name": "cert",
"certificate_serial_number": "2751265269709804611"
}
],
"paging": {
"next": "https://server/api/v1/mdm/profiles/certificates?skip-token=Mzo3OjE6MTU0Mjg4NjY0NDEyNw%3D%3D",
"previous": "https://server/api/v1/mdm/profiles/certificates?skip-token=MzoxOjI6MTU0Mjg4NjcyODY1MA%3D%3D"
}
}
No certificates found matching the query
{
"metadata": {
"total_record_count": "0"
},
"certificates": [],
"paging": {}
}
![]()
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.