amount and currency are mandatory fields to initiate a first or a one-time payment.
Please, note that the amount parameter can only be a positive Integer.

As there are currencies with different number of decimal fractions and without any, here is a short guide on the currencies in terms of the amount parameter.

The currencies with two decimal fractions:


The following combination will result in 30.20 EUR:

 {
  "amount": 3020,
  "currency": "EUR"
 }


The currencies with no minor units:

Currency ISO 4217 code
Currency name
BIF
Burundian Franc
CLP
Chilean Peso
DJF
Djiboutian Franc
GNF
Guinean Franc
ISK
Icelandic Krona
JPY
Japanese Yen
KMF
Comoran Franc
KRW
South Korean Won
PYG
Paraguayan Guarani
RWF
Rwandan Franc
UGX
Ugandan Shilling
VUV
Vanuatu Vatu
VND
Vietnamese Dong
XAF
Central African Franc
XOF
West African CFA franc
XPF
Comptoirs Français du Pacifique


The following combination will result in a 3000 KRW charge:

  {
   "amount": 3000,
   "currency": "KRW"
  }


The currencies with three decimal fractions:


Currency ISO 4217 code
Currency name
BHD
Bahraini Dinar
IQD
Iraqi Dinar
JOD
Jordanian Dinar
KWD
Kuwaiti Dinar
LYD
Libyan Dinar
OMR
Omani Rial
TND
Tunisian Dinar


The following combination will result in a 30 IQD charge:

  {
   "amount": 30000,
   "currency": "IQD"
  }