Parameters
2 query
Query parameters
· 2vatIdstringRequiredEU VAT identifier including country prefix (e.g., "SK2020317068").
SK2020317068forcestringOptionalSet to "true" to bypass the 4-week cache and re-query VIES.
example_forceValidates an EU VAT identifier through the VIES REST API and caches the result for 4 weeks. Returns the validity flag, registered name, address, the VIES request date, and a UI hint (suggestReverseCharge) that is true for valid non-CZ EU VAT IDs — the typical case where the admin should set the contact's reverseCharge flag.
2 query
vatIdstringRequiredEU VAT identifier including country prefix (e.g., "SK2020317068").
SK2020317068forcestringOptionalSet to "true" to bypass the 4-week cache and re-query VIES.
example_force1 status code documented
vatIdstringRequiredThe VAT ID that was queried.
isValidbooleanRequiredTrue if VIES confirmed the VAT identifier.
countryCodestringRequiredISO 3166-1 alpha-2 country code (or "EL" for Greece in VIES).
vatNumberstringRequiredVAT identifier without the country prefix.
namestringOptionalRegistered name as held by the member state.
addressstringOptionalRegistered address (may contain newlines).
requestDatestringOptionalISO date when VIES queried the national registry.
suggestReverseChargebooleanRequiredUI hint: true when the contact qualifies for EU intra-community supply (valid non-CZ EU VAT ID).
{
"vatId": "example_vatId",
"isValid": false,
"countryCode": "example_countryCode",
"vatNumber": "example_vatNumber",
"name": "example_name",
"address": "example_address",
"requestDate": "example_requestDate",
"suggestReverseCharge": false
}GET /bff/ecommerce/vies/detail
curl -X GET "https://api.bizkithub.com/bff/ecommerce/vies/detail?vatId=SK2020317068&force=example_force" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.