Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

A webhook is an event driven notification from Blink to your system. This webhook is triggered when the transaction status is changed in Blink. The user is redirected to the notification_url specified in the intent request.



Send Notification

POST https://<notification_url>

Headers

Content-Type string
Content type.

Authorization string
Access token generated from create token request.

Attributes

transaction_id string
Transaction ID.

status string
Status.

note string
Note.

Request

POST https://my_domain/notifications
Content-Type: application/json
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbG...

{
    "transaction_id": 210542***,
    "status": "Captured",
    "note": "Status changed to Captured." 
}

Response

{
    "message": "Success"
}

  • No labels