Your API key for authentication.
Query Parameters
Optional metric filter. Allowed values: latency, api_errors, call_length.
Response
Alarm configuration objects for your organization.
data.alarms[].metric_type
Metric this alarm tracks. One of: latency, api_errors, call_length.
Trigger threshold for this metric.
Whether this alarm is enabled.
data.alarms[].webhook_config
Webhook settings object, including url and optional masked headers.
data.alarms[].email_addresses
Email recipients for notifications.
data.alarms[].sms_numbers
SMS recipients for notifications.
ISO timestamp for when the alarm was created.
ISO timestamp for when the alarm was last updated.
null on success, otherwise an array of error objects.
{
"data": {
"alarms": [
{
"id": "b14f7f49-8af2-4d7b-9f51-e3b42b2f91c6",
"metric_type": "latency",
"enabled": true,
"threshold": 1,
"webhook_config": {
"url": "https://example.com/webhooks/alarms",
"headers": {
"Content-Type": "appl***"
}
},
"email_addresses": ["alerts@example.com"],
"sms_numbers": ["+15555550123"],
"created_at": "2026-03-10T00:26:37.707Z",
"updated_at": "2026-03-10T00:26:37.707Z"
}
]
},
"errors": null
}