Currency List [GET]
Operation
This operation allow you to get a list of all the currencies available in the system.
GET
https://{environment}.ulysescloud.com/public/api/{version}/currency
Request
This request has no parameters.
Example request
GET https://prod.ulysescloud.com/api/v1/currency
Response
Array of Currency elements.
Entity
Field Type Required Description id Integer true Unique identificator of the Currency. code String true Code of the Currency (ISO 4217) name String true Name of the Currency. nameI18n String true Name of the Currency in user language. symbol String true The UTF-8 symbol for this currency. decimalPlaces Integer true Number of decimals. Example: if decimalPlaces is 2, then a value should look like "2.00€".
Example response
[ { "id": 1, "code": "EUR", "name": "Euro", "nameI18n": "Euro" }, { "id": 2, "code": "USD", "name": "US Dollar", "nameI18n": "US Dollar" }, { "id": 3, "code": "JPY", "name": "Japan Yen", "nameI18n": "Japan Yen" }, { "id": 4, "code": "GBP", "name": "UK Pound", "nameI18n": "UK Pound" } ]