Payment Status
Query the current status of a B2B payment by its order_id.
Response Parameters
| Name | Type | Description |
|---|---|---|
statusRequired | String | Payment status. Values: `PENDING`, `PROCESSING`, `SUCCESS`, `FAILED`. |
order_idOptional | String | The merchant-provided order identifier, echoed back from the original request. |
bulkIdOptional | String | Bank bulk operation identifier. |
amountOptional | String | Payment amount. |
payee_ibanOptional | String | Recipient IBAN. |
payee_nameOptional | String | Recipient name. |
webhook_sentOptional | Boolean | Indicates whether the webhook notification was sent. |
created_atOptional | String | Payment creation timestamp (ISO 8601). |
Response Example
1{2 "status": "PROCESSING",3 "order_id": "order-20240430-001",4 "bulkId": "11523",5 "amount": "1000.00",6 "payee_iban": "AZ29ABCD000000000000000000000",7 "payee_name": "Technology LLC",8 "webhook_sent": false,9 "created_at": "2026-04-30T10:15:22.000000Z"10}Payment Statuses
| Status | Meaning |
|---|---|
PENDING | Not yet submitted to the bank |
PROCESSING | Submitted to the bank, awaiting response |
SUCCESS | Payment completed successfully |
FAILED | Payment failed |