v3

latestOpenAPI 3.0.3Apache 2.02026-07-312637031.3 MB
Card Transaction Simulations

Simulate reversal

A reversal releases the hold that was placed on account funds by an authorization, thus returning the funds to the account.

Simulate an authorization.reversal type transaction by including the original_transaction_token and amount in your request.

post/cards/transaction_simulations/reversal

Request body

amountinteger required

The amount of the transaction in the smallest whole denomination of the applicable currency (eg. For USD use cents)

find_original_window_daysinteger
is_adviceboolean
original_transaction_idstring uuid required

Example request

{
  "amount": 80,
  "find_original_window_days": 6,
  "is_advice": false,
  "network_fees": [
    {
      "amount": 123,
      "credit_debit": "C",
      "type": "ISSUER_FEE"
    },
    {
      "amount": 123,
      "credit_debit": "C",
      "type": "ISSUER_FEE"
    }
  ],
  "original_transaction_id": "original_transaction_id"
}

Response

Success

SimulationResponseModel required