Skip to main content

Reverse Parameters

This section outlines the required parameters for processing a reversal request.

Request Parameters

Parameter NameTypeMandatoryDescription
versionstring(10)optionalProtocol version. Default value: 1.0.1. Version 1.0 is deprecated.
order_idstring(1024)mandatoryOrder ID generated by the merchant.
merchant_idinteger(12)mandatoryMerchant unique ID, assigned by Fondy during registration.
amountinteger(12)mandatoryOrder amount without separator.
currencystring(3)mandatoryOrder currency. Supported values:
  • EUR — Euro
  • USD — US Dollar
  • GBP — Pound Sterling
  • CZK — Czech Republic Koruna
  • GEL — Georgian Lari
  • UZS — Uzbekistan Sum
Full list of supported currencies.
emailstring(254)optionalMerchant staff email who initiated the reversal.
commentstring(1024)optionalMerchant comment on the reversal reason (UTF-8).
reverse_idstring(50)optionalIdempotent reversal key to retry refund safely. Merchant should generate a unique value for each retry per order_id.
signaturestring(40)mandatoryOrder signature. Required to verify merchant request consistency and authenticity. Signature generation algorithm please see at Signature generation for request and response.

Examples

{
"request": {
"order_id": "test_12343242111",
"currency": "GEL",
"amount": "1",
"signature": "29a569275265925c2ec356d3adada1929fd8bb8c",
"merchant_id": "1549901"
}
}