valditBusinessEntity
The Valdit Business Entity defines a Business entity for which the Vat Checks are performed on behalf of the customer.
Element | Description | Type | Mandatory |
---|---|---|---|
_id | Unique Identifier of the Business Entity | string (36) | yes |
companyName | Company Name | string | no |
vatNumberValidationInfo | Contains information on the VAT number validation for the Business Entity | vatNumberValidationInfo object (see paragraph 8.2) | yes |
customerReference | A unique reference to the Business Entity, included if set by the Customer | string, maximum length: 50 | no |
businessAddress | Registered address of the Business Entity in a structured format | address object (see paragraph 8.4) | no |
Table 6: valditBusinessEntity Model elements
Example
{ “valditBusinessEntity”: { “_id”: “6dbfd244-c736-4fd7-8cca-e67da312efdf”, “companyName”: “SA S.A. SPA MONOPOLE, COMPAGNIE FERMIÈRE DE SPA”, “vatNumberValidationInfo”: { “vatCountryCode”: “BE”, “vatNumber”: “0420834005”, “lastCheckResult”: “valid”, “lastCheckDate”: “2016-07-25T07:23:55.2096812Z”, “vatRegisteredAddress”: “RUE AUGUSTE LAPORTE 34\n4900 SPA”, “vatNumberFormatValid”: true, “vatCheckRecurrence”: “none” }, “businessAddress”: { “street”: “Rue Auguste Laporte”, “houseNumber”: 34, “postalCode”: “4900”, “city”: “Spa”, “countryCode”: “BE”, “formattedAddress”: “Rue Auguste Laporte 34, 4900 Spa” } } } |
---|