action vatapi_vat_number_validate { label: "Validate a VAT number" description: "
We highly recommend if you are able, to check a VAT number on your end first to save wasted API lookups. It maybe that your customer has simply entered the wrong format. Heres a client side way to check the format using Javascript
" provider: vatapi method: GET path: "/vat-number-check" encoding: json input: { type: "object" properties: { "Response-Type": { type: "string" } vatid: { type: "string" } } required: ["vatid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }