Channel Meta Update

Update a user's channel meta

Info

Required scope: channels.write

Warning

This method requires authentication

Update channel title.

curl -X PATCH \
     -H "Authorization: Bearer [access token]" \
     -H "Content-Type: application/json" \
     -d '{"title": "New title"}' \
     https://api.restream.io/v2/user/channel-meta/123456

Request Body

{
  "title": "New title",
  "description": "New description (optional field)"
}

Response

Success
Error
<Empty body>