Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
OK
curl --request GET \
--url https://api.mottostreaming.com/streaming/videos/v1/{video_id} \
--header 'Authorization: Bearer <token>'
{
"video": {
"id": "<string>",
"name": "<string>",
"project_id": "<string>",
"playlists": [
{
"id": "<string>",
"name": "<string>",
"format": "PLAYLIST_FORMAT_UNSPECIFIED",
"private_url": "<string>",
"public_url": "<string>",
"dvr_settings": {
"window_size_seconds": 123
},
"visibility": "VISIBILITY_UNSPECIFIED",
"org_id": "<string>",
"project_id": "<string>",
"video_id": "<string>"
}
]
}
}
GetVideo
Returns information about the video.
curl --request GET \
--url https://api.mottostreaming.com/streaming/videos/v1/{video_id} \
--header 'Authorization: Bearer <token>'
{
"video": {
"id": "<string>",
"name": "<string>",
"project_id": "<string>",
"playlists": [
{
"id": "<string>",
"name": "<string>",
"format": "PLAYLIST_FORMAT_UNSPECIFIED",
"private_url": "<string>",
"public_url": "<string>",
"dvr_settings": {
"window_size_seconds": 123
},
"visibility": "VISIBILITY_UNSPECIFIED",
"org_id": "<string>",
"project_id": "<string>",
"video_id": "<string>"
}
]
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK
Show child attributes