New Chargeflow docs. Everything for merchants, platforms, and the API in one place.
Log in
Current (2025-04-01)Merchants APIAlerts

Get Alert By ID

Retrieves a single pre-chargeback alert by ID, including its status, type, linked transaction, and reason. Available to Chargeflow Alerts customers.

GET
/public/2025-04-01/alerts/{alertId}
x-api-key<token>

Your Chargeflow API key, sent on every request. Generate one in the Chargeflow App, or see API keys.

In: header

Path Parameters

alertId*string

The unique Chargeflow object identifier of the alert.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/public/2025-04-01/alerts/alert_123456789"
{  "id": "alert_123456789",  "account_id": "account_987654321",  "ext_account_id": "platform_acc_12345",  "transaction": "txn_abcdef123456",  "created_at": "2025-07-31T12:34:56Z",  "network_transaction": {    "id": "net_txn_78910",    "created_at": "2025-07-31T12:30:00Z",    "amount": 12500,    "currency": "USD",    "card_brand": "Visa",    "bin": "411111",    "last4": "1111",    "auth_code": "AUTH1234",    "arn": "ARN56789"  },  "status_date": "2025-07-31T13:00:00Z",  "status": "refund_initiated",  "statement_descriptor": "My Merchant Store",  "amount": 12500,  "currency": "USD",  "outcome": "pending",  "type": "fraud_warning",  "reason": "fraud"}
Was this page helpful?