Checkio API
get/{tenantId}/v1/notifications/alerts/{alertId}

Get notification alert

Requires Authentication
Notifications

Returns a single notification alert by ID

Path Parameters

NameTypeDescription
tenantId
required
string (uuid)Tenant UUID
alertId
required
string (uuid)Billing alert UUID

Responses

Notification alert details

Response Bodyapplication/json
id
string (uuid)
tenantId
string (uuid)
alertType
string
enum: "balance-low" | "balance-zero" | "billing-failure"- Type of billing alert
name
string
- Display name for the alert
threshold
integer (int64)
- Credit threshold that triggers the alert (minimum 10000)
cooldownMinutes
integer (int32)
- Minimum minutes between alert notifications (minimum 5)
isEnabled
boolean
- Whether the alert is active
lastTriggeredAt
string (date-time)
- When the alert was last triggered (null if never)
createdAt
string (date-time)
updatedAt
string (date-time)

Code Examples

curl -X GET 'https://api-next.checkio.co.uk/{tenantId}/v1/notifications/alerts/{alertId}' \
  -H 'Authorization: Bearer {token}'