Country
Represents the highest geographical level in the organizational model: the state or equivalent jurisdiction used for master data, tax, and commerce. In Flowlyze a country is not a full street address; it is the reference that typically drives default currency, tax rules (e.g. VAT, sales tax), and integration metadata (dialing codes, ISO codes, customs unions). Other objects—addresses, sites, warehouses—resolve the country to apply calculation and compliance rules.
Full JSON example
{
"id": "country_IT",
"channel": "demoipaas",
"createdAt": "2026-01-01T00:00:00+00:00",
"updatedAt": "2026-03-01T12:00:00+00:00",
"iso3166_1_alpha2": "IT",
"iso3166_1_alpha3": "ITA",
"iso3166_1_numeric": "380",
"name": "Italy",
"officialName": "Italian Republic",
"defaultCurrency": "EUR",
"defaultTaxRegime": "VAT_STANDARD",
"defaultTaxZoneId": "tz_eu_it_standard",
"euMember": true,
"phonePrefix": "+39"
}
Remarkable notes
defaultCurrencyanddefaultTax*fields are country-level defaults; documents or transactions may use other currencies or rates when the flow allows.- Sample
defaultTaxRegimeanddefaultTaxZoneIdare illustrative strings; in production they must align with the tenant’s fiscal setup and ERP connector. - Prefer ISO 3166-1 (
alpha2/alpha3/numeric) for cross-system interoperability.