Bulk Validate Tax Numbers

Use this request to bulk validate tax numbers.

To validate multiple tax numbers, use the following URL and the GET method:

{service_url}/api/v3/tax_numbers/validate

Here, {service_url} is the URL of the sandbox or production environment.

Specify the tax numbers in the body:

{
  "items": [
    {"input": {"tax_number": "000000000", "country_code": "PL"}},
    {"input": {"tax_number": "111111111", "country_code": "GB"}},
    ...
  ]

Details

EndpointMethod
/bulk/api/v3/tax_numbers/validateGET

Input parameters

FieldDescription
input.tax_numberThe tax number that you want to validate.
input.tax_number.country_codeThe two-letter ISO country code associated with the tax number.

Output parameters

The following parameters are returned in the response:

FieldDescription
items.idReturns the unique request identifier associated with each validation request. This identifier can be used to track and identify the corresponding validation process.

Request example

{
  "items": [
    {"input": {"tax_number": "000000000", "country_code": "PL"}},
    {"input": {"tax_number": "111111111", "country_code": "GB"}},
    ...

Response example

{
    "items": [
        {
            "id": "ANKpMhAXMAA="
        },
        {
            "id": "ANKpMhAYMAA="
        },
        ...
    ]

Did this page help you?