Update Ticker

Update a user's studio ticker

Info

Required scope: studio.write

Warning

This method requires authentication

Update the text of a studio ticker owned by the authenticated user.

curl -X PATCH \
     -H "Authorization: Bearer [access token]" \
     -H "Content-Type: application/json" \
     -d '{"text": "Updated ticker message"}' \
     https://api.restream.io/v2/user/studio/tickers/{tickerId}

Path Parameters

ParameterTypeDescription
tickerIdstring (UUID)The ID of the ticker to update

Request Body

FieldTypeDescription
textstringTicker text (required)
{
  "text": "Updated ticker message"
}

Response

Success
Error (Not Found)
Error (Unauthorized)
{
  "id": "c3d4e5f6-a7b8-9012-cdef-345678901234",
  "text": "Updated ticker message",
  "brandId": "f47ac10b-58cc-4372-a567-0e02b2c3d479"
}