Create a new alert programmatically. This lets you trigger, manage, and integrate alerts directly into your application logic.
Request structure
curl -X POST 'https://api.cloud.blnkfinance.com/alerts/flag/bal_1234567890abcdef' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
"title": "An identity has been flagged in a sanction list.",
"description": "this is a test"
}'
Unique identifier of the entity to flag. Must be a valid balance, transaction, or identity ID.
Optional. A brief title for the alert.
Required. A detailed description of the alert.
Response structure
{
"anomaly_id": "ano_8a380fd1-0289-46d1-bc76-aa17a510a64e",
"title": "An identity has been flagged in a sanction list.",
"description": "this is a test",
"type": "Balance",
"assigned_to": "jerrys enebeli",
"escalated_to": [
"user_01K4EX0BRXHNNGCRVT2TPNK07W"
],
"status": "FLAGGED",
"created_at": "2026-01-15T09:22:37.55763+01:00",
"updated_at": "2026-01-15T09:26:03.094425+01:00",
"affected_balances": [
"bln_20f02af6-3728-4d37-9b5a-c7ed080f09df"
],
"affected_identities": [],
"affected_transactions": []
}
Unique identifier for the alert.
The title of the alert, if provided.
The description of the alert.
The type or category of the alert (e.g., “Balance”, “Transaction”, “Identity”).
The name or identifier of the user assigned to handle the alert.
Array of user identifiers to whom the alert has been escalated.
The current status of the alert (e.g., “FLAGGED”).
ISO 8601 formatted timestamp of when the alert was created.
ISO 8601 formatted timestamp of when the alert was last updated.
Array of balance IDs affected by this alert.
Array of identity IDs affected by this alert.
Array of transaction IDs affected by this alert.
Need help?
If you’re having trouble with Blnk Cloud, don’t hesitate to send us a message via email at support@blnkfinance.com or send us a message here.