Asset URLs

Asset URLs Management

Get embeded urls

get

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
get
/urls/embeded
GET /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 standalone urls

get

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
get
/urls/standalone
GET /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