Get all supported currencies
GET {{baseUrl}}/currencies?term=<string>
Returns all supported currencies in given account which should be used when saving monetary values with other objects. The code
parameter of the returning objects is the currency code according to ISO 4217 for all non-custom currencies.
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
term | string | Optional search term that is searched for from currency's name and/or code |
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Accept | string |
RESPONSES
status: OK
{"success":true,"data":[{"id":1,"code":"EUR","name":"Euro","decimal_points":2,"symbol":"€","active_flag":true,"is_custom_flag":false},{"id":2,"code":"USD","name":"US Dollar","decimal_points":2,"symbol":"$","active_flag":true,"is_custom_flag":false}]}