The Amount Object in Detail
{
"amount": Integer,
"currency": String
}
amount Integer, always present
The amount in the smallest unit of currency.
Example: Given the currency EUR
, the amount of 1234
would equate to "1234 cents" or "EUR 12.34".
For transfers the amount object is also used in the request. In this case both amount
and currency
are required properties.
Example
{
"amount": 1234,
"currency": "EUR"
}