Money object

Attributes

AttributeTypeDescription
amountstring requiredThe amount is a string representation of a decimal number, rounded to 2 decimal places.
currencystring requiredThe currency in ISO 4217 format. Supported values include “AUD”, “NZD” and “USD”. However, the value provided must correspond to the currency of the Merchant account making the request.

Example Money object

Australia

1{
2 "amount": "29.99",
3 "currency": "AUD"
4}

New Zealand

1{
2 "amount": "29.99",
3 "currency": "NZD"
4}

United States of America

1{
2 "amount": "29.99",
3 "currency": "USD"
4}