get
/{tenantId}/v1/notifications/alerts/{alertId}Get notification alert
Requires Authentication
Notifications
Returns a single notification alert by ID
Path Parameters
| Name | Type | Description |
|---|---|---|
tenantIdrequired | string (uuid) | Tenant UUID |
alertIdrequired | string (uuid) | Billing alert UUID |
Responses
Notification alert details
Response Bodyapplication/json
idstring (uuid)
tenantIdstring (uuid)
alertTypestring
enum: "balance-low" | "balance-zero" | "billing-failure"- Type of billing alertnamestring
- Display name for the alertthresholdinteger (int64)
- Credit threshold that triggers the alert (minimum 10000)cooldownMinutesinteger (int32)
- Minimum minutes between alert notifications (minimum 5)isEnabledboolean
- Whether the alert is activelastTriggeredAtstring (date-time)
- When the alert was last triggered (null if never)createdAtstring (date-time)
updatedAtstring (date-time)
Code Examples
curl -X GET 'https://api-next.checkio.co.uk/{tenantId}/v1/notifications/alerts/{alertId}' \
-H 'Authorization: Bearer {token}'