settings/currencies/codes
Retrieves the list of currencies.
URL
(GET) /api/settings/currencies/codes
(POST) /api/settings/currencies/codes
PARAMETERS
The method has no parameters.
Use the POST variant for Auto-completion and pagination.
RESULTS
The result is a JSON array with one element per country:
v | The 3 letter currency code such as EUR or USD | string |
t | The English currency name such as "Euro" | string |
sym | The currency symbol such as "$" | string |
EXAMPLES
List of currencies sorted by English name:
CODE
[
{
"v": "AMD",
"t": "Armenian Dram",
"sym": "֏"
},
{
"v": "ARS",
"t": "Argentine Peso",
"sym": "$"
},
{
"v": "AUD",
"t": "Australian Dollar",
"sym": "$"
},
...
]