curl --request POST \
--url https://api.timbal.ai/orgs/{org_id}/channels \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"type": "email",
"name": "Finance inbox",
"config": {
"to": "finance@example.com"
}
}
'{
"channel_action": "linked",
"id": 123
}{
"code": "<string>",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>"
}Channels
Create Channel
Create a delivery channel for this org, or reuse an existing one.
Channels dedupe on (type, config): posting the same Slack channel twice returns the original row with channel_action: "reused" rather than creating a near-duplicate. Attach the returned id to an alarm via POST /orgs/{org_id}/alarms/{alarm_id}/channels.
POST
/
orgs
/
{org_id}
/
channels
curl --request POST \
--url https://api.timbal.ai/orgs/{org_id}/channels \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"type": "email",
"name": "Finance inbox",
"config": {
"to": "finance@example.com"
}
}
'{
"channel_action": "linked",
"id": 123
}{
"code": "<string>",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>"
}Authorizations
Timbal API key. Obtain your API key from the Timbal platform settings. See Authentication for more information.
Path Parameters
Body
application/json