Countries and currencies are handled consistently across all of the ReadyRemit API endpoints. Anytime a country or currency is returned in the API, can you expect the object to look the same.

Countries

{
  "name": "Argentina",
  "iso3Code": "ARG",
  "iso2Code": "AR"
}

When a country code is defined in an API endpoint instead of a country object, the 3-digit ISO code will always be used. An example of this can be seen when filtering in the GET /corridors endpoint:

curl --location --request GET 'https://sandbox-api.readyremit.com/v1/corridors?dstCountryIso3Code=BEL' \
--header 'Authorization: Bearer TOKEN' \