Alerting & Response/Alert Channels & Integrations
PUTAlertingSince 1.0SynchronousAuth Required
UpdateAlertChannel
Update an existing notification channel configuration
Execution Availability
Try It Out
Submit a mock request using the current auth context and example-driven inputs.
Path Parameters
Request Inputs
Path Parameters
uuidStringRequiredUUID of the channel to update
Body Fields
nameStringRequiredNew channel name
Example: Updated Ops Channel
descriptionStringRequiredNew channel description
Example: Updated description
configObjectRequiredNew channel configuration
Example: (nested object)
templateIdStringRequiredNew template identifier
Example: tmpl-email-002
statusStringRequiredNew channel status
Example: disabled
Responses
Endpoint
PUT/api/v1/alerting/channels/{uuid}
/api/v1/alerting/channels/{uuid}
Request Example
curl -X PUT '{host}/api/v1/alerting/channels/{uuid}' -H 'Authorization: Bearer {token}' -H 'Content-Type: application/json' -d '{"name":"Updated Ops Channel","description":"Updated description","config":"(nested object)","templateId":"tmpl-email-002","status":"disabled"}'
Response Example
200{
"uuid": "chan-001",
"name": "Ops Email Channel",
"description": "Email notifications for operations team",
"type": "email",
"status": "active",
"config": null,
"templateId": "tmpl-email-001",
"alertCount": 150
}Change History
This API has no change history records yet.
