Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Send a POST request to an external URLA 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.


Anchor
post-notification
post-notification

Send Notification

POST https://<your<notification_domain>/notificationurl>

Headers

Content-Typestring
Content type.

Authorizationstring
Access token generated from create token request.

Attributes

transaction_idstring
Transaction ID.

statusstring
Status.

notestring
Note.

Request

Code Block
POST https://<yourmy_domain>domain/notificationnotifications
Content-Type: application/json
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbG...

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

Response

Code Block
{
    "message": "Success"
}