/reference/currencies
List currencies
Returns all configured currencies. Use the code field as currencyCode in order creation. Reference lists are bounded configuration data and are returned unpaginated.
Responses
PublicCurrencyResponse[]
| Field | Type | Description |
|---|---|---|
code
|
string · nullable | ISO 4217 currency code, e.g. `SEK`, `EUR`. |
decimalPlaces
|
integer | Number of decimal places used when displaying amounts in this currency. |
exchangeRate
|
decimal | Exchange rate relative to the tenant base currency. Serialised as a decimal string. |
isBase
|
boolean | Whether this is the tenant's base / accounting currency. |
name
|
string · nullable | Display name of the currency, e.g. `Swedish Krona`. |
symbol
|
string · nullable | Currency symbol, e.g. `kr`, `€`. Null if not configured. |
Standard errors:
401
403
Errors
Examples
curl "https://api.erp.fluit.cloud/preview/reference/currencies" \
-H "X-Api-Key: fluit_live_sk_..."
[
{
"code": "string",
"decimalPlaces": 2,
"exchangeRate": "299.00",
"isBase": true,
"name": "Acme AB",
"symbol": "string"
}
]
Base URL https://api.erp.fluit.cloud/preview. The response example is generated from the schema: the shape is right, the values are made up.