Update a user's channel meta
Required scope: channels.write
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
{ "title": "New title", "description": "New description (optional field)" }
<Empty body>
{ "error": { "statusCode": 401, "status": 401, "code": 401, "message": "Invalid token: access token is invalid", "name": "invalid_token" } }