Zip Downloads
Get zip download status
Returns the download status of a zip archive, allowing an application to inspect the progress of the download as well as the number of items that might have been skipped.
This endpoint can only be accessed once the download has started. Subsequently this endpoint is valid for 12 hours from the start of the download.
The URL of this endpoint should not be considered as fixed. Instead, use the Create zip download API to request to create a zip archive, and then follow the status_url field in the response to this endpoint.
get/zip_downloads/{zip_download_id}/status
Path parameters
zip_download_idstring required
The unique identifier that represent this zip archive.
Response
Returns the status of the zip archive that is being downloaded.
Example response
{
"total_file_count": 20,
"downloaded_file_count": 10,
"skipped_file_count": 5,
"skipped_folder_count": 5,
"state": "succeeded"
}