Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
Returns all countries available in the system. Use this to populate a country picker for accountingCountryId in update-profile, contact billing country, or address forms.
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
itemsobject[]RequiredAll countries ordered alphabetically by name.
idnumberRequiredInternal country ID. Use as accountingCountryId / companyCountryId.
codestringRequiredISO 3166-1 alpha-2 code.
CZisoCodestringRequiredISO 3166-1 alpha-3 code.
CZEnamestringRequiredCountry display name.
isEubooleanRequiredWhether this country is an EU member state (drives reverse-charge VAT logic).
{
"items": [
{
"id": 0,
"code": "CZ",
"isoCode": "CZE",
"name": "example_name",
"isEu": false
}
]
}GET /bff/organisation/available-countries
curl -X GET "https://api.bizkithub.com/bff/organisation/available-countries" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.