GET restapi/personal/yourfiles/files/zip/v1
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Itslearning.RestApi.Entities.YourFiles.ZipFileJobModel| Name | Description | Type | Additional information |
|---|---|---|---|
| JobId |
The job identifier |
integer |
None. |
| FileRepoId |
The file repository identifier for the zip file |
globally unique identifier |
None. |
| ZipFileName |
The name of the zip file |
string |
None. |
| Created |
When the job was created |
date |
None. |
| Status |
Status for the job |
string |
None. |
| DownloadUrl |
The url to download the file if status is completed |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"JobId": 1,
"FileRepoId": "4e78bda6-1c10-4715-b621-52e1f563b0ad",
"ZipFileName": "sample string 3",
"Created": "2025-12-14T15:15:30Z",
"Status": "sample string 5",
"DownloadUrl": "sample string 6"
}
application/xml, text/xml
Sample:
<ZipFileJobModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Itslearning.RestApi.Entities.YourFiles"> <Created>2025-12-14T15:15:30Z</Created> <DownloadUrl>sample string 6</DownloadUrl> <FileRepoId>4e78bda6-1c10-4715-b621-52e1f563b0ad</FileRepoId> <JobId>1</JobId> <Status>sample string 5</Status> <ZipFileName>sample string 3</ZipFileName> </ZipFileJobModel>