Twitch API Change Stream attributes (C# Post Request)

shows correct here

https://api.twitch.tv/helix/channels/?broadcaster_id=76126553

{
"data": [
{
"broadcaster_id": "76126553",
"broadcaster_name": "bonbonn_",
"broadcaster_language": "en",
"game_id": "33214",
"game_name": "Fortnite",
"title": "twitch api test"
}
]
}

It may take a few moments/minutes for a change you make to be reflected in the API/frontend

This

curl -X PATCH ‘https://api.twitch.tv/helix/channels?scope=channel_editor&broadcaster_id=76126553&scope=bits:read’

using (var request = new HttpRequestMessage(new HttpMethod(“PATCH”), “https://api.twitch.tv/helix/channels?scope=channel_editor&broadcaster_id=<my_broadcast_id>&scope=bits:read”))

Should be just

curl -X PATCH ‘https://api.twitch.tv/helix/channels?broadcaster_id=76126553’

using (var request = new HttpRequestMessage(new HttpMethod(“PATCH”), “https://api.twitch.tv/helix/channels?broadcaster_id=<my_broadcast_id>”))

Scope is not a parameter for this endpoint