Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Response
OK
curl --request GET \
--url https://api.mottostreaming.com/cms/banners/v1/batch \
--header 'Authorization: Bearer <token>'
{
"banners": [
{
"id": "<string>",
"project_id": "<string>",
"name": "<string>",
"destination_url": {},
"texts": [
{
"text": {},
"color": "<string>",
"background_color": "<string>",
"font_family": "<string>",
"is_button": true
}
],
"background_assets": [
{
"asset_id": {},
"loop": true,
"breakpoint_width": 123
}
],
"visibility": "VISIBILITY_UNSPECIFIED"
}
]
}
BatchGetBanners
Returns banner information by banner IDs.
curl --request GET \
--url https://api.mottostreaming.com/cms/banners/v1/batch \
--header 'Authorization: Bearer <token>'
{
"banners": [
{
"id": "<string>",
"project_id": "<string>",
"name": "<string>",
"destination_url": {},
"texts": [
{
"text": {},
"color": "<string>",
"background_color": "<string>",
"font_family": "<string>",
"is_button": true
}
],
"background_assets": [
{
"asset_id": {},
"loop": true,
"breakpoint_width": 123
}
],
"visibility": "VISIBILITY_UNSPECIFIED"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK
Show child attributes