ExchangeQuoteRequest
Request for an exchange quote
from objectrequired
Details of the currency and amount being exchanged from
amountnumberrequired
The specific monetary value that is being converted from in the currency exchange
Example:
100
currencystringrequired
The type of currency that the money is being exchanged from
Possible values: non-empty
, Value must match regular expression [A-Z]{3}
Example:
USD
to objectrequired
Details of the currency and amount being exchanged to
amountnumberrequired
The specific monetary value that is being converted from in the currency exchange
Example:
100
currencystringrequired
The type of currency that the money is being exchanged from
Possible values: non-empty
, Value must match regular expression [A-Z]{3}
Example:
USD
settlementDatedaterequired
Settlement date for the exchange quote
Example:
2023-12-31
ExchangeQuoteRequest
{
"from": {
"amount": 100,
"currency": "USD"
},
"to": {
"amount": 100,
"currency": "USD"
},
"settlementDate": "2023-12-31"
}