Create Ticker

Add a new studio ticker

Info

Required scope: studio.write

Warning

This method requires authentication

Create a studio ticker owned by the authenticated user.

curl -X POST \
     -H "Authorization: Bearer [access token]" \
     -H "Content-Type: application/json" \
     -d '{"text": "Subscribe for more content!", "brandId": "f47ac10b-58cc-4372-a567-0e02b2c3d479"}' \
     https://api.restream.io/v2/user/studio/tickers

Request Body

FieldTypeDescription
textstringTicker text (required)
brandIdstringBrand ID to associate with the ticker (required)
{
  "text": "Subscribe for more content!",
  "brandId": "f47ac10b-58cc-4372-a567-0e02b2c3d479"
}

Response

Success
Error (Unauthorized)
{
  "id": "c3d4e5f6-a7b8-9012-cdef-345678901234",
  "text": "Subscribe for more content!",
  "brandId": "f47ac10b-58cc-4372-a567-0e02b2c3d479"
}