> For the complete documentation index, see [llms.txt](https://docs.transactionlink.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.transactionlink.io/docs/v1/integrations/polish-vat-whitelist.md).

# Polish VAT Whitelist

### What kind of data I will get

By using this integration, you will get information about VAT status of company. This data will be taken from the government data register.

### Input

Query company data by nip.

```json
{
  "nip": "1580056873"
}
```

Query company data by iban.

```json
{
  "iban": "37928400055119019661627633"
}
```

### Response content

**polishWhiteList**

<table><thead><tr><th width="254">Attribute</th><th>Type</th><th>Description</th></tr></thead><tbody><tr><td><code>name</code></td><td><code>string</code></td><td>Name of the business entity</td></tr><tr><td><code>nip</code></td><td><code>string</code></td><td>Tax identification number (NIP)</td></tr><tr><td><code>statusVat</code></td><td><code>string</code></td><td>VAT taxpayer status</td></tr><tr><td><code>regon</code></td><td><code>string</code></td><td>National Business Registry Number (REGON)</td></tr><tr><td><code>residenceAddress</code></td><td><code>string</code></td><td>Address of the business entity</td></tr><tr><td><code>representatives</code></td><td><code>array</code></td><td>List of representatives</td></tr><tr><td><code>authorizedClerks</code></td><td><code>array</code></td><td>List of authorized clerks</td></tr><tr><td><code>partners</code></td><td><code>array</code></td><td>List of partners</td></tr><tr><td><code>registrationLegalDate</code></td><td><code>string</code></td><td>Date of registration</td></tr><tr><td><code>registrationDenial</code></td><td><code>object</code></td><td>Information about registration denial</td></tr><tr><td><code>restoration</code></td><td><code>object</code></td><td>Information about restoration</td></tr><tr><td><code>removal</code></td><td><code>object</code></td><td>Information about removal</td></tr><tr><td><code>accountNumbers</code></td><td><code>array</code></td><td>List of bank account numbers</td></tr><tr><td><code>hasVirtualAccounts</code></td><td><code>boolean</code></td><td>Whether the business entity has virtual accounts</td></tr></tbody></table>

#### Example response

```json
{
    "polishWhiteList" : {
        "requestId" : "KdGcs-8fjfjd9",
        "requestDateTime" : "09-06-2020 16:38:57",
        "details" : [{
            "name" : "RAFAŁ MALARCZYK",
            "nip" : "1580056873",
            "statusVat" : "ACTIVE",
            "regon" : "855193920",
            "residenceAddress" : "JODŁOWA 51, 28-500 MŁAWA",
            "representatives" : [ ],
            "authorizedClerks" : [ ],
            "partners" : [ ],
            "registrationLegalDate" : "2014-09-01",
            "registrationDenial" : { },
            "restoration" : { },
            "removal" : { },
            "accountNumbers" : [ "37928400055119019661627633", "24800200040882909458077296" ],
            "hasVirtualAccounts" : false
        }]
    }
}
```
