Assets
Assets Management
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: 100RequiredDefault:
Number of records to fetch.
20offsetintegerRequiredDefault:
Records to be fetched from this offset.
0order_bystring · enumOptionalDefault:
Sort records by field
codePossible values: order_typestring · enumOptionalDefault:
Order type - asc or desc.
descPossible values: Responses
200
OK
application/json
401
Unauthorized
422
Unprocessable Entity
application/json
get
/assetsGET /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 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
401
Unauthorized
403
Asset access forbidden - may be restricted
404
Asset not found
409
Asset details cannot be viewed when asset is in restricted state
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