GET api/organization/vat/{vat}
Validates a given VAT number
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| vat |
VAT number to validate |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Result of VAT validity check
VATResponseDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| VAT |
Checked VAT number |
string |
None. |
| Name |
Name of validated organization, if valid |
string |
None. |
| Valid |
Whether the VAT number is valid |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"VAT": "sample string 1",
"Name": "sample string 2",
"Valid": true
}