Downloads

Asset Downloads Management

Download classic asset

post

Download classic asset files. Assets can be identified by either id (UUID) or asset_name (string), but not both. Specify the type of download using the download_type parameter to get data files, thumbnail, or movie.

Authorizations
AuthorizationstringRequired

Customer-scoped API key that automatically determines the customer context for all operations.

Body

Request parameters for downloading classic asset files Either id (UUID) or asset_name (string) must be provided to identify the asset.

idstring · uuidOptional

Unique ID of the asset to download

asset_namestringOptional

Name of the asset to download

download_typestring · enumRequired

Type of file to download:

  • data: Download all asset data files as a compressed zip archive
  • thumbnail: Download the thumbnail image (JPEG format)
  • movie: Download the movie/video file (MP4 format)
Possible values:
Responses
200

File download successful

Responsestring · binary

Zip file containing asset data files

post
/assets/download
POST /api/classic/assets/download HTTP/1.1
Host: console.studio360.tech
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 88

{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "asset_name": "text",
  "download_type": "data"
}
binary

Last updated