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

KeyDatatypeRequiredDescription
termstringOptional search term that is searched for from currency's name and/or code

HEADERS

KeyDatatypeRequiredDescription
Acceptstring

RESPONSES

status: OK

{&quot;success&quot;:true,&quot;data&quot;:[{&quot;id&quot;:1,&quot;code&quot;:&quot;EUR&quot;,&quot;name&quot;:&quot;Euro&quot;,&quot;decimal_points&quot;:2,&quot;symbol&quot;:&quot;€&quot;,&quot;active_flag&quot;:true,&quot;is_custom_flag&quot;:false},{&quot;id&quot;:2,&quot;code&quot;:&quot;USD&quot;,&quot;name&quot;:&quot;US Dollar&quot;,&quot;decimal_points&quot;:2,&quot;symbol&quot;:&quot;$&quot;,&quot;active_flag&quot;:true,&quot;is_custom_flag&quot;:false}]}