Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
Returns all currencies available in the system with their ISO 4217 code and display symbol. Use this to populate a currency picker when configuring the organisation default currency.
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
itemsobject[]RequiredAll system currencies ordered by ISO code.
idnumberRequiredInternal currency ID.
codestringRequiredISO 4217 currency code. Use this value to reference the currency across the API.
CZKsymbolstringRequiredDisplay symbol of the currency (up to 3 characters).
Kč{
"items": [
{
"id": 0,
"code": "CZK",
"symbol": "Kč"
}
]
}GET /bff/organisation/available-currencies
curl -X GET "https://api.bizkithub.com/bff/organisation/available-currencies" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.