Return Webhook
POST https://<return_url>?res=12345
Headers
Content-Type string
Content type is JSON.
Attributes
transaction_id string
Transaction id.
status string
The new status of the transaction.
note string
Notification note.
merchant_data json
JSON string of all the optional data sent by the merchant.
Request
POST https://my_domain/return?res=BL-5TYAU56 HTTP/1.1 Content-Type: application/json { "transaction_id": "BL-****", "status": "Captured", "note": "Status changes to Captured", "merchant_data": { "order_id": 1234567 } }
Response
HTTP/1.1 200 OK Content-Type: application/json { }
Notification Webhook
POST https://<notification_url>
Headers
Content-Type string
Content type is JSON.
Attributes
transaction_id string
Transaction id.
status string
The new status of the transaction.
note string
Notification note.
merchant_data json
JSON string of all the optional data sent by the merchant.
Request
POST https://my_domain/notification HTTP/1.1 Content-Type: application/json { "transaction_id": "BL-****", "status": "Captured", "note": "Status changes to Captured", "merchant_data": { "order_id": 1234567 } }
Response
HTTP/1.1 200 OK Content-Type: application/json { }