update_channel_status
Enable or disable a specific streaming channel to control its broadcast status across multiple platforms like YouTube, Twitch, and Facebook.
Instructions
Enable or disable a specific streaming channel
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| channelId | Yes | The ID of the channel to update | |
| enabled | Yes | Whether to enable (true) or disable (false) the channel |
Input Schema (JSON Schema)
{
"properties": {
"channelId": {
"description": "The ID of the channel to update",
"type": "string"
},
"enabled": {
"description": "Whether to enable (true) or disable (false) the channel",
"type": "boolean"
}
},
"required": [
"channelId",
"enabled"
],
"type": "object"
}