Skip to main content

Capture Parameters

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

Request parameters

Parameter NameTypeMandatoryDescription
versionstring(10)optionalProtocol version. Default: 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 Koruna
  • GEL — Georgian Lari
  • UZS — Uzbekistan Sum
See full list.
signaturestring(40)mandatoryOrder signature to verify merchant request consistency and authenticity. See Signature generation.

Examples

{
"request": {
"version": "1.0.1",
"order_id": "test_12343242113",
"currency": "GEL",
"merchant_id": 1549901,
"amount": 100,
"signature": "1efcb015c89da38977ae1e734aade413b95ca900"
}
}