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/validateHere, {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
| Endpoint | Method |
|---|---|
/bulk/api/v3/tax_numbers/validate | GET |
Input parameters
| Field | Description |
|---|---|
input.tax_number | The tax number that you want to validate. |
input.tax_number.country_code | The two-letter ISO country code associated with the tax number. |
Output parameters
The following parameters are returned in the response:
| Field | Description |
|---|---|
items.id | Returns 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="
},
...
]Updated 16 days ago
Did this page help you?
