v1

latestOpenAPI 3.0.02026-08-06478.7 KB

Reverse a remittance transaction

Allows reversing a remittance only on the same day of the operation.

delete/v2/remittances/receive_reversal

Request body

amountstring required

The amount of the remittance to be reversed.

referencestring required

Reference number of the remittance transaction.

reversal_reason'WANTS_CASH' | 'WRONG_TX' | 'OUT_OF_CHECKS' | 'ID_PROBLEM' required

Reason for reversing the remittance.

Example request

{
  "amount": "1596.00",
  "reference": "23033104",
  "reversal_reason": "WRONG_TX"
}

Response

Successful reversal of the remittance transaction.

statusstring

The status of the reversal.

reversal_date_timestring date-time

Timestamp of the reversal operation.

Example response

{
  "status": "reversed",
  "reversal_date_time": "2025-03-28T00:36:54.000Z"
}