POST
/
MoneyOut
/
cancelAll
curl --request POST \
  --url https://api-sandbox.payabli.com/api/MoneyOut/cancelAll \
  --header 'Content-Type: application/json' \
  --header 'requestToken: <api-key>' \
  --data '[
  "2-29",
  "2-28",
  "2-27"
]'
{
  "responseText": "Success",
  "isSuccess": true,
  "responseData": {
    "isSuccess": true,
    "responseText": "Success",
    "responseCode": 1,
    "responseData": {
      "authCode": null,
      "referenceId": "10-2806",
      "resultCode": 1,
      "resultText": "Cancelled",
      "avsResponseText": null,
      "cvvResponseText": null,
      "customerId": 3047,
      "methodReferenceId": null
    }
  },
  "pageidentifier": null
}

Authorizations

requestToken
string
header
required

Most endpoints require an organization token. Some endpoints require an application token, and those endpoints are noted.

Body

The body is an array of referenceId for transactions to cancel.

Array of identifiers of payout transactions to cancel.

Response

200
application/json

Success

The response for canceling a single payout transaction.