Assets

Assets Management

Get classic assets list

get

Get list of classic assets with pagination. Filters and sorting can be applied.

Authorizations
AuthorizationstringRequired

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

Body

Request parameters for listing classic assets with pagination and filters

limitinteger · min: 10 · max: 100Required

Number of records to fetch.

Default: 20
offsetintegerRequired

Records to be fetched from this offset.

Default: 0
order_bystring · enumOptional

Sort records by field

Default: codePossible values:
order_typestring · enumOptional

Order type - asc or desc.

Default: descPossible values:
Responses
200

OK

application/json
get
/assets
GET /api/classic/assets HTTP/1.1
Host: console.studio360.tech
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 202

{
  "limit": 20,
  "offset": 0,
  "order_by": "code",
  "order_type": "desc",
  "filters": {
    "studio_code": 1,
    "asset_type": "D",
    "profile": "text",
    "asset_name": "text",
    "job_inward_id": 1,
    "status": "PUBLISHED",
    "date": "2025-12-06"
  }
}
{
  "count": 1,
  "limit": 1,
  "offset": 1,
  "records": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "code": 1,
      "asset_type": "D",
      "asset_name": "text",
      "profile": "text",
      "studio_code": 1,
      "job_inward_id": 1,
      "status": "PUBLISHED",
      "expires_at": "2025-12-06",
      "thumbnail": "https://example.com",
      "url": "https://example.com",
      "date": "2025-12-06T04:05:46.360Z"
    }
  ]
}

Get a classic asset

get

Get detailed information about a specific classic asset by its ID.

Authorizations
AuthorizationstringRequired

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

Path parameters
idstring · uuidRequired

ID of the asset to fetch

Responses
200

OK

application/json
Responseall of
get
/assets/{id}
GET /api/classic/assets/{id} HTTP/1.1
Host: console.studio360.tech
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "code": 1,
  "asset_type": "D",
  "asset_name": "text",
  "profile": "text",
  "studio_code": 1,
  "job_inward_id": 1,
  "status": "PUBLISHED",
  "expires_at": "2025-12-06",
  "thumbnail": "https://example.com",
  "url": "https://example.com",
  "date": "2025-12-06T04:05:46.360Z",
  "fields": {
    "ANY_ADDITIONAL_PROPERTY": "anything"
  }
}

Last updated