getFreeInfo(authorizedRequest $request)
get company free information (general information, contact data)
token
- access token (required)country
- country code EST
, LTU
or LVA
(optional, default 'EST')reg_code
- registration number of company (optional, default 10117826 Bisnode)language
- language of results en
,et
or ru
(optional, default en
)customer
- if you're reseller, you can add a note about your customer here. Used only in log file, you can search and filter log by this parameter (optional)Example:
<?xml version = "1.0" encoding = "UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<SOAP-ENV:getFreeInfo>
<item>
<token>0c725874e737c8195de547f67692d8b976726561</token>
<country>EST</country>
<reg_code>10117826</reg_code>
<language>en</language>
</item>
</SOAP-ENV:getFreeInfo>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Example:
<?xml version = "1.0" encoding = "UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SOAP-ENV:Body>
<SOAP-ENV:getFreeInfoResponse>
<item>
<general>
<company_name>BISNODE ESTONIA AS</company_name>
<company_type>Public limited company</company_type>
<company_type_code>Public limited company</company_type_code>
<status>Active</status>
<status_code>active</status_code>
<deletion_date/>
<registration_number>10117826</registration_number>
<registration_date>1996-11-18</registration_date>
<registered_capital>25560.0</registered_capital>
<registered_capital_currency>EUR</registered_capital_currency>
<vat_number>EE100106532</vat_number>
<address>Estonia pst 5, 10143, Tallinna linn, Harju maakond</address>
<activity>63.99</activity>
</general>
<contacts>
<item>
<type>Address</type>
<type_code>ADDRESS</type_code>
<content>Estonia pst 5, 10143, Tallinna linn, Harju maakond</content>
</item>
<item>
<type>Telephone</type>
<type_code>TEL</type_code>
<content>+372 6414910</content>
</item>
<item>
<type>E-mail address</type>
<type_code>EMAIL</type_code>
<content>info@bisnode.ee</content>
</item>
<item>
<type>Internet address (www)</type>
<type_code>WWW</type_code>
<content>www.bisnode.ee</content>
</item>
</contacts>
<old_names>
<item>aktsiaselts CONNECTUS</item>
<item>Aktsiaselts BISNODE ESTONIA</item>
</old_names>
<payment_remarks/>
<debts_rating><code>1</code>
<status>None</status>
<color>green</color>
</debts_rating>
<last_annual_report>2014</last_annual_report>
</item>
</SOAP-ENV:getFreeInfoResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
country
and reg_code
parameters are correct.Example:
<?xml version = "1.0" encoding = "UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<SOAP-ENV:Fault>
<faultcode>SOAP-ENV:Client</faultcode>
<faultstring>This request is not allowed for you</faultstring>
</SOAP-ENV:Fault>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>