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
Name | Type | Description |
---|---|---|
Transactions | Collection of CancelTransactionRequestTransaction |
Request formats
{
"Transactions": [
{
"Key": "sample string 1"
},
{
"Key": "sample string 1"
}
]
}
Response information
Name | Type | Description |
---|---|---|
Transactions | Collection of CancelTransactionRequestTransaction |
{
"Transactions": [
{
"Key": "sample string 1",
"IsCanceled": true
},
{
"Key": "sample string 1",
"IsCanceled": true
}
]
}
Updated 14 days ago