POST
/
cms
/
banner_collections
/
v1
curl --request POST \
  --url https://api.mottostreaming.com/cms/banner_collections/v1 \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "<string>",
  "project_id": "<string>",
  "name": "<string>",
  "banner_ids": [
    "<string>"
  ],
  "visibility": "VISIBILITY_UNSPECIFIED"
}'
{
  "banner_collection": {
    "id": "<string>",
    "project_id": "<string>",
    "name": "<string>",
    "banner_ids": [
      "<string>"
    ],
    "visibility": "VISIBILITY_UNSPECIFIED"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json

BannerCollection represents a collection of banners that can be displayed in a carousel on an end-user facing web/app page.

Response

200
application/json

OK

The response is of type object.