Documentation
HomeSupportStatusSign in ->
  • Developer guide
  • How it works?
  • Integration Quick Guide
    • Link Flow
    • Embedded Flow
    • Running Workflow
  • Production setup
  • Webhooks
  • Widget
    • Methods
    • Inline mode
  • Postman Collection
  • Changelog
  • Records
    • Introduction
    • Migration Guide: Migrating from Cases to Records
  • TRANSACTIONLINK API
    • API Reference
      • Authentication
      • Cases (deprecated)
      • Resources
      • Parameters
      • Token
      • Link
      • Workflows
      • Records
        • Attachments
    • API Changelog
    • API Versioning
  • Integrations
    • AIS
      • Data fields availability across banks
      • Testing data
    • Autopay
    • BIG Info Monitor
      • Company Report
      • Personal Report
      • Entrepreneur Report
      • Plus Sco Plus CR3 Report
    • BankID
      • 🇳🇴Norway
      • 🇩🇰Denmark
    • CEIDG
      • Get company
      • List companies
    • Companies House
      • Public Data Api
        • Exemptions
        • Persons with significant Control
        • UK Establishments
        • Filing History
        • Registers
        • Registered Office Address
        • Company Profile
        • Officers
        • Insolvency
        • Charges
      • Documents Api
    • ComplyAdvantage
    • ComplyCube
      • Identity Verification
        • Document Check
        • Proof of Address Check
        • Identity Check
      • Document Check
      • AML Screening Check
      • Face Authentication Check
    • Data Ninja
      • Labeling
      • Profiling
      • Scoring
    • eDO App
    • GUS
    • IAML
    • KRD
      • Company Report
      • Personal Report
      • Identity Card Verification
    • mObywatel
      • CitizenDetails
      • CitizenNationality
    • OnDato
    • Polish VAT Whitelist
    • Przelewy 24
    • PWG
    • QARD
    • Rejestr.io
    • Registru Centras
      • Get company
      • List documents
      • Get document
    • Smart-ID
    • SMS API
    • Twilio
    • MojeId
    • Veriff
      • Supported Browsers
    • VIES (Vat Validation)
      • vies
    • Zoho Sign
      • Adding document fields automatically using text tags
    • Idenfy
    • GBG
      • IDScan
      • Verifications
    • Visa
    • KYB
      • Company Profile
    • Handelsregister
      • Company profile
        • List companies
        • Get company
        • Get company documents
    • InfoCamere
      • Company profile
        • List companies
        • List persons
        • Get company
        • Get person
        • Get documents
    • CBE - Belgium Company Register
      • Company profile
        • List companies
        • Get company
        • List documents
        • Get document
    • Transparenzregister
      • Beneficial owners
        • List companies
        • List documents
        • Get documents
    • CVR (Danish Central Business Register)
      • Company profile
        • List Companies
        • Get Company
        • Get document
    • Malta Business Registry
      • Company profile
        • List Companies
        • Get Company
Powered by GitBook
On this page
  • What kind of data I will get
  • Input
  • Response content

Was this helpful?

  1. Integrations

Polish VAT Whitelist

Get informations about companies VAT status

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.

{
  "nip": "1580056873"
}

Query company data by iban.

{
  "iban": "37928400055119019661627633"
}

Response content

polishWhiteList

Attribute
Type
Description

name

string

Name of the business entity

nip

string

Tax identification number (NIP)

statusVat

string

VAT taxpayer status

regon

string

National Business Registry Number (REGON)

residenceAddress

string

Address of the business entity

representatives

array

List of representatives

authorizedClerks

array

List of authorized clerks

partners

array

List of partners

registrationLegalDate

string

Date of registration

registrationDenial

object

Information about registration denial

restoration

object

Information about restoration

removal

object

Information about removal

accountNumbers

array

List of bank account numbers

hasVirtualAccounts

boolean

Whether the business entity has virtual accounts

Example response

{
    "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
        }]
    }
}

PreviousOnDatoNextPrzelewy 24

Last updated 1 year ago

Was this helpful?