GET
/
streaming
/
assets
/
v1
/
{asset_id}
curl --request GET \
  --url https://api.mottostreaming.com/streaming/assets/v1/{asset_id} \
  --header 'Authorization: Bearer <token>'
{
  "asset": {
    "id": "<string>",
    "name": "<string>",
    "project_id": "<string>",
    "type": "ASSET_TYPE_UNSPECIFIED",
    "content_type": "<string>",
    "size_bytes": "<string>",
    "access_control_mode": "ACCESS_CONTROL_MODE_UNSPECIFIED",
    "create_time": "2023-11-07T05:31:56Z",
    "labels": [
      {
        "key": "<string>",
        "value": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

asset_id
string
required

Response

200
application/json
OK
asset
object