Asset URLs
Asset URLs Management
Get urls which can be embeded in an iframe for a list of assets.
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
all ofOptional
and
Responses
200
OK
application/json
401
Unauthorized
403
Forbidden
422
Unprocessable Entity
application/json
get
/urls/embededGET /api/jewellery/urls/embeded HTTP/1.1
Host: console.studio360.tech
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 216
{
"asset_filters": {
"asset_ids": [
"123e4567-e89b-12d3-a456-426614174000"
],
"job_ids": [
1
]
},
"asset_identifier": "universal",
"playback_quality": "HD",
"playback_rate": 1,
"with_multi_view": false,
"width": 640,
"url_variants": [
"t"
]
}{
"urls": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"urls": [
{
"url": "https://example.com",
"view": "text",
"variant": "t"
}
]
}
]
}Get urls which can be opened in a standalone page for a list of assets.
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
all ofOptional
and
Responses
200
OK
application/json
401
Unauthorized
403
Forbidden
422
Unprocessable Entity
application/json
get
/urls/standaloneGET /api/jewellery/urls/standalone HTTP/1.1
Host: console.studio360.tech
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 317
{
"asset_filters": {
"asset_ids": [
"123e4567-e89b-12d3-a456-426614174000"
],
"job_ids": [
1
]
},
"asset_identifier": "universal",
"playback_quality": "HD",
"playback_rate": 1,
"with_multi_view": false,
"show_elements": {
"name": true,
"properties": true,
"tags": true,
"certificates": true
},
"logo_spec": {
"position": "NO",
"code": "text",
"size": 48
}
}{
"urls": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"urls": [
{
"url": "https://example.com",
"view": "text",
"variant": "t"
}
]
}
]
}Last updated