PUT v1/Location/GetAvailableCurrenciesForCountry

Returns a list of available currencies that the country pays out in

Request Information

Parameters (ParameterName * = required)

Name
Description
Sample Value
CountryTo *
The 2-letter country code
MX
BankId
Bank ID
5871301

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "currencyCode": "sample string 1",
    "isDefaultCurrency": true
  },
  {
    "currencyCode": "sample string 1",
    "isDefaultCurrency": true
  },
  {
    "currencyCode": "sample string 1",
    "isDefaultCurrency": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfCurrencyResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ria.Digital.WebServices.DataModels">
  <CurrencyResponse>
    <_x003C_CurrencyCode_x003E_k__BackingField>sample string 1</_x003C_CurrencyCode_x003E_k__BackingField>
    <_x003C_IsDefaultCurrency_x003E_k__BackingField>true</_x003C_IsDefaultCurrency_x003E_k__BackingField>
  </CurrencyResponse>
  <CurrencyResponse>
    <_x003C_CurrencyCode_x003E_k__BackingField>sample string 1</_x003C_CurrencyCode_x003E_k__BackingField>
    <_x003C_IsDefaultCurrency_x003E_k__BackingField>true</_x003C_IsDefaultCurrency_x003E_k__BackingField>
  </CurrencyResponse>
  <CurrencyResponse>
    <_x003C_CurrencyCode_x003E_k__BackingField>sample string 1</_x003C_CurrencyCode_x003E_k__BackingField>
    <_x003C_IsDefaultCurrency_x003E_k__BackingField>true</_x003C_IsDefaultCurrency_x003E_k__BackingField>
  </CurrencyResponse>
</ArrayOfCurrencyResponse>