KiCompanyBasic en
Introduction
KiCompanyBasic is the name of a Web Service based on SOAP protocol for requesting companies’ register codes. KiCompanyBasic requests are free of charge up to 500 queries per month.
WSDL
KiCompanyBasic WDSL is located at http://services.krediidiinfo.ee/KiCompanyBasic.wsdl.
WSDL for users of Microsoft Development Tools is located at: http://services.krediidiinfo.ee/KiCompanyBasicLit.wsdl. It differs from the previous WSDL in that RPC/litteral is used instead of RPC/encode.
Methods
getName
Requesting company’s name.
| Name | Type | Description | |
|---|---|---|---|
| Input parameter: | regCode | xs:string | Company’s registry code. |
| Output parameter: | name | xs:string | Company’s name. Output value is an empty string if the name is not found (compnay does not exist, error in the registry code etc). |
findCompanies
Searching companies by name. The result is an array, which includes companies’ names and registry codes according to the search string.
| Name | Type | Description | |
|---|---|---|---|
| Input parameter: | regCode | xs:string | Company’s registry code |
| count | xs:int | Maximum number of companies found in the result of the method (The method does not return at once more than 100 companies) | |
| Output parameter: | companies | ResultCompanyIDDataArray | Indexed array which elements are ResultCompanyIDData array elements. |
ResultCompanyIDData is a record with the following structure:
| Name | Type | Description | |
|---|---|---|---|
| regCode | xs:string | Company’s registry code | |
| name | xs:string | Company’s name. |
isRegCodeValid
Ettevõtte äriregistri korrektsuse kontrollimine.
| Nimi | Tüüp | Kirjeldus | |
|---|---|---|---|
| Sisendparameetrid: | regCode | xs:string | Ettevõtte äriregistri kood |
| Väljundparameeter: | isValid | xs:boolean | Tõene, kui parameetriga ette antud äriregistri kood on kaheksakohaline arv ja viimane kontrollnumber on õige. |
Näidisprogramm PHP-s
Järgnevalt on toodud PHP-s kirjutatud KiCompanyBasic veebiteenuse kasutamise näide.
<?php
/**
* Krediidiinfo KiCompanyBasic veebiteenuse kasutamise näidis.
*/
$param = array('encoding'=>'ISO-8859-13');
$client = new SoapClient('http://services.krediidiinfo.ee/KiCompanyBasic.wsdl', $param);
$name = 'KREDIIDI';
$companies = $client->findCompanies($name, 3);
print_r($companies);
$regCode = '10256137';
$name = $client->getName($regCode);
echo "Äriregistri kood {$regCode} kuulub ettevõttele {$name}\n";
$regCode = '10256136'; // kontrollnumber on vale!
if (!$client->isRegCodeValid($regCode)) {
echo "Äriregistri kood on vigane.\n";
} else {
echo "Äriregistri kood on korrektne\n";
}
?>
Programmi väljund:
Array
(
[0] => Array
(
[regCode] => 90006012
[name] => KREDIIDI JA EKSPORDI GARANTEERIMISE SITHASUTUS KREDEX
)
[1] => Array
(
[regCode] => 10704587
[name] => KREDIIDI JÄRELVALVE OÜ
)
[2] => Array
(
[regCode] => 10256137
[name] => KREDIIDIINFO AS
)
)
Äriregistri kood 10256137 kuulub ettevõttele KREDIIDIINFO AS
Äriregistri kood on vigane.