Returns the processing status and metadata for a file identified by its file_id. Use this to verify whether a file upload has completed before referencing it in other API calls.
get /api/v1/mdm/files/{file_id}/status
https://{serverurl}/api/v1/mdm/files/{file_id}/status
MDMOnDemand.MDMDeviceMgmt.READCopied!
Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52
Unique identifier of the uploaded file. Obtain this from the response of Upload a File to MDM or Upload a File Using Module Configuration
Token used for delta/incremental fetches. Pass the token returned from a previous response to retrieve only items modified since that point
Pagination continuation token returned by a previous response. Pass it to fetch the next page of results
curl --request GET \
--url https://appdomain/api/v1/mdm/files/{file_id}/status \
--header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52'Current processing status of the file. Possible values: PENDING (queued for processing), PROCESSING (upload in progress), COMPLETED (file ready for use), FAILED (upload or processing failed)
Unique identifier of the uploaded file
Name of the uploaded file including its extension
MIME type of the uploaded file. Common values: application/vnd.android.package-archive (apk), application/x-itunes-ipa (ipa), application/zip (appxbundle, xap, appx, msix), application/x-ms-installer (msi)
Length of the uploaded file in bytes
Unix timestamp (in milliseconds) until when the uploaded file is valid
Unix timestamp (in milliseconds) when the file was originally uploaded
File processing completed and ready for use
{
"created_time": 1735603200000,
"content_type": "application/vnd.android.package-archive",
"file_name": "zylker-app.apk",
"file_id": 9007199254741076,
"expiry_time": 15987913528,
"content_length": 2048576,
"status": "COMPLETED"
}
File is queued and waiting to be processed
{
"created_time": 1735603200000,
"content_type": "application/x-ms-installer",
"file_name": "large-installer.msi",
"file_id": 9007199254741078,
"expiry_time": 15987913528,
"content_length": 52428800,
"status": "PENDING"
}
![]()
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.