GET
/
cms
/
banner_collections
/
v1
cURL
curl --request GET \
  --url https://api.mottostreaming.com/cms/banner_collections/v1 \
  --header 'Authorization: Bearer <token>'
{
  "banner_collections": [
    {
      "id": "<string>",
      "project_id": "<string>",
      "name": "<string>",
      "banner_ids": [
        "<string>"
      ],
      "visibility": "VISIBILITY_UNSPECIFIED"
    }
  ],
  "next_page_token": "<string>"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

page_size
integer

Maximum number of records to return

project_id
string
page_token
string

The pagination token in the List request.

filter
string

Filter the result-set by properties using a subset of the Kibana Query Language. Currently filter can be applied to name, optionally with a * suffix for prefix matching. It does not support suffix or infix matching. E.g. name:Real Mad*

order_by
string

Reserved for future use

Response

200
application/json

OK

The response is of type object.