Anchor | ||||
---|---|---|---|---|
|
Return Webhook
POST GET https://<return_url>?res=12345
Headers
Content-TypestringContent type.Authorizationstring
Access token generated from create token request.
Attributes
transaction_idstring
Transaction ID.statusstring
Status.notestring
Note.transaction_id=BL-002A12345&status=Pending%2BSubmission¬e=Pending%2BSubmission&merchant_data=%257B%2522order_id%2522%253A%2522dd-12345678%2522%257D
Request
Code Block |
---|
POSTGET https://my_domain/return?res=QkwtMDBGN0Q…..1Ng%3D%3Dtransaction_id=BL-002A12345&status=Pending%2BSubmission¬e=Pending%2BSubmission&merchant_data=%257B%2522order_id%2522%253A%2522dd-12345678%2522%257D HTTP/1.1 { } |
Response
Code Block |
---|
{HTTP/1.1 200 }OK |
Anchor | ||||
---|---|---|---|---|
|
Notification Webhook
POST https://<notification_url>
Headers
Content-Typestring
Content type is JSON.Authorizationstring
Access token generated from create token request.
Attributes
transaction_idstring
Transaction IDid.
statusstring
StatusThe new status of the transaction.
notestring
Note
Notification note.
merchant_datajson
JSON string of all the optional data sent by the merchant.
Request
Code Block |
---|
POST https://my_domain/notificationsnotification HTTP/1.1 Content-Type: application/json Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbG... { "transaction_id": 210542"BL-****", "status": "Captured", "note": "Status changedchanges to Captured.", } |
Response
Code Block |
---|
HTTP/1.1 200 OK Content-Type: application/json { "merchant_data": { "messageorder_id": "Success" } 1234567 } } |
Response
Code Block |
---|
HTTP/1.1 200 OK |