Skip to main content
DELETE
/
orgs
/
{org_id}
/
notifications
/
channels
/
{channel_id}
Delete a notification channel.
curl --request DELETE \
  --url https://api.timbal.ai/orgs/{org_id}/notifications/channels/{channel_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "force": true
}'
{
  "code": "<string>",
  "message": "<string>"
}
Removes the channel; rule–channel links drop automatically. Rules may remain with no channels. Org admin only. 204 on success.

Authorizations

Authorization
string
header
required

Timbal API key. Obtain your API key from the Timbal platform settings. See Authentication for more information.

Path Parameters

org_id
string
required
channel_id
string
required

Body

application/json

Optional — omit entirely or send {} for default (non-force) behavior.

force
boolean | null

When true, delete even if rules reference this channel (cascading unlink).

Response

Channel deleted