Anchor | ||||
---|---|---|---|---|
|
Return Webhook
POST https://<return_url>?res=12345
Headers
Content-Typestring
Content type .Authorizationstring
Access token generated from create token requestis JSON.
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/return?res=QkwtMDBGN0Q…..1Ng%3D%3DBL-5TYAU56 HTTP/1.1 Content-Type: application/json { "transaction_id": "BL-****", "status": "Captured", "note": "Status changes to Captured", "merchant_data": { "order_id": 1234567 } } |
Response
Code Block |
---|
HTTP/1.1 200 OK
Content-Type: application/json
{
} |
Anchor | ||||
---|---|---|---|---|
|
Notification Webhook
POST https://v1/pay/notification<notification_url>
Headers
Content-Typestring
Content type is JSON.AuthorizationstringAccess token generated from create token request.
Attributes
transaction_idstring
Transaction id.
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://secure.blinkpayment.co.uk/api/v1/pay/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
Code Block |
---|
HTTP/1.1 200 OK Content-Type: application/json { "message": "Success" } |