Transaction(s) Cancel (POST)

❗️

Post

Live: <https://checkout.buckaroo.nl/json/Transaction/Specifications>
Test: <https://testcheckout.buckaroo.nl/json/Transaction/Specifications>

This cancels the provided transaction(s).

Header

The authentication of this JSON API is based on a standard HMAC Authentication implementation.

Body parameters

CancelTransactionRequest

NameTypeDescription
TransactionsCollection of CancelTransactionRequestTransaction

Request formats

{
  "Transactions": [
    {
      "Key": "sample string 1"
    },
    {
      "Key": "sample string 1"
    }
  ]
}

Response information

NameTypeDescription
TransactionsCollection of CancelTransactionRequestTransaction

{
  "Transactions": [
    {
      "Key": "sample string 1",
      "IsCanceled": true
    },
    {
      "Key": "sample string 1",
      "IsCanceled": true
    }
  ]
}