Versions Compared

Key

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

Send a POST request to an external URL.


Anchor
post-notification
post-notification

Send Notification

POST https://<your_domain>/notification

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://<your_domain>/notification
Content-Type: application/json
AuthenticationAuthorization: Bearer eyJ0eXAiOiJKV1QiLCJhbG...

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

Response

Code Block
{
    "message": "Success"
}