Download an Asset
POST/assets/get
Download an asset from the asset storage. Download supports partial requests and can be downloaded using parallel connections for maximum throughput. The provided download URL has an expiry for security reason. The URL can be utilized for maximum of one hour.
Request
- application/json
Body
assetId string
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
success boolean
error string
errorcode integer
assetURL string
assetIdentifier string
assetSignature string
assetVersion string
assetSigned string
assetDesc string
assetMeta object
checksum string
{
"success": true,
"error": "string",
"errorcode": 0,
"assetURL": "string",
"assetIdentifier": "string",
"assetSignature": "string",
"assetVersion": "string",
"assetSigned": "string",
"assetDesc": "string",
"assetMeta": {},
"checksum": "string"
}
Loading...