Check VAT number
GET/api/vat/check
Check VAT number
Request
Query Parameters
vat stringrequired
VAT number to check
Responses
- 200
- 409
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
isValid boolean
requestDate date-time
userError string
name string
address string
requestIdentifier string
originalVatNumber string
vatNumber string
viesApproximate object
name string
street string
postalCode string
city string
companyType string
matchName integer
matchStreet integer
matchPostalCode integer
matchCity integer
matchCompanyType integer
vat string
{
"isValid": true,
"requestDate": "2024-10-07T07:46:54.087Z",
"userError": "string",
"name": "string",
"address": "string",
"requestIdentifier": "string",
"originalVatNumber": "string",
"vatNumber": "string",
"viesApproximate": {
"name": "string",
"street": "string",
"postalCode": "string",
"city": "string",
"companyType": "string",
"matchName": 0,
"matchStreet": 0,
"matchPostalCode": 0,
"matchCity": 0,
"matchCompanyType": 0
},
"vat": "string"
}
Vat Already exists
- application/json
- Schema
- Example (from schema)
Schema
errors object
vat string
The VAT number
team object
id int64
The ID of the team
name string
The name of the team
{
"errors": {
"vat": "string"
},
"team": {
"id": 0,
"name": "string"
}
}
Loading...