Add, update, or remove alert channels
Alerts
Batch Update Alert Channels
Batch create, update, or soft-delete alert channels for your workspace.
PUT
Add, update, or remove alert channels
Authorizations
Use Authorization: Bearer
Body
application/json
Required array length:
1 - 1000 elementsExample:
[
{
"action": "add",
"channel": {
"name": "Primary Slack Channel",
"type": "slack",
"params": {
"webhook_url": "https://hooks.slack.com/services/T00/B00/xxxx"
}
}
},
{
"action": "update",
"channel": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Renamed Channel",
"enabled": false
}
},
{
"action": "remove",
"channel": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}
}
]Response
200 - application/json
Example:
true
Last modified on July 1, 2026