check_vat_test_service
Test VIES service integration using predefined VAT numbers to verify system connectivity and validate EU VAT number checking functionality.
Instructions
Test VIES service integration with test VAT numbers / Testovať integráciu so službou VIES
Input Schema
Name | Required | Description | Default |
---|---|---|---|
countryCode | Yes | EU member state code / Kód členského štátu EÚ | |
vatNumber | Yes | Test VAT number: 100 (valid), 200 (invalid) / Testové IČ DPH: 100 (platné), 200 (neplatné) |
Input Schema (JSON Schema)
{
"properties": {
"countryCode": {
"description": "EU member state code / Kód členského štátu EÚ",
"enum": [
"AT",
"BE",
"BG",
"CY",
"CZ",
"DE",
"DK",
"EE",
"EL",
"ES",
"FI",
"FR",
"HR",
"HU",
"IE",
"IT",
"LT",
"LU",
"LV",
"MT",
"NL",
"PL",
"PT",
"RO",
"SE",
"SI",
"SK"
],
"type": "string"
},
"vatNumber": {
"description": "Test VAT number: 100 (valid), 200 (invalid) / Testové IČ DPH: 100 (platné), 200 (neplatné)",
"enum": [
"100",
"200"
],
"type": "string"
}
},
"required": [
"countryCode",
"vatNumber"
],
"type": "object"
}