Get a Download
GET/download-svc/download/:downloadId
Get a download by ID.
Requires the download-svc:download:view
permission.
Request
Path Parameters
downloadId stringrequired
Download ID
Responses
- 200
- 401
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
download
object
cancelled boolean
dir string
downloadedBytes integer
error string
fileName string
filePath string
fullFileSize integer
id string
paused boolean
progress number
status string
url string
exists boolean
{
"download": {
"cancelled": true,
"dir": "string",
"downloadedBytes": 0,
"error": "string",
"fileName": "string",
"filePath": "string",
"fullFileSize": 0,
"id": "string",
"paused": true,
"progress": 0,
"status": "string",
"url": "string"
},
"exists": true
}
Unauthorized
- application/json
- Schema
Schema
string
Internal Server Error
- application/json
- Schema
Schema
string
Loading...