PHP code example of nodasoft / abcp_api_client

1. Go to this page and download the library: Download nodasoft/abcp_api_client library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

nodasoft / abcp_api_client example snippets




$tecDocRestClient = new \NS\ABCPApi\RestApiClients\TecDoc();
$tecDocRestClient->setUserKey('your_userKey)
    ->setUserLogin('your_email')
    ->setUserPsw('your_password');

$tecDocRestClient->setHost

//$carType - тип автомобиля. 0 - все, 1 - легковые, 2- грузовые, 3-малотонажные
//$motorcyclesFilter - фильтрация по мотоциклам. 0 - все, 1 - только автомобили, 2 - только мотоциклы
$manufacturers = $tecDocRestClient->getManufacturers($carType, $motorcyclesFilter);

//$manufacturerId - идентификатор производителя
$models = $tecDocRestClient->getModels($manufacturerId);

//$manufacturerId - идентификатор производителя
//$modelId - идентификатор модели
$modifications = $tecDocRestClient->getModifications($manufacturerId, $modelId);

//$modificationId - идентификатор модификации
$tree = $tecDocRestClient->getModelVariant($modificationId);

//$modificationId - идентификатор модификации
//$categoryId - идентификатор категории
$articles = $tecDocRestClient->getArticles($modificationId, $categoryId);

//$modificationId - идентификатор модификации
//$categoryId - идентификатор категории
$articles = $tecDocRestClient->getArticlesSimplified($modificationId, $categoryId);

//$articleId - идентификатор детали
$article = $tecDocRestClient->getArticle($articleId);

//$articleId - идентификатор детали
$adaptability = $tecDocRestClient->getAdaptability($articleId);

//$articleId - идентификатор детали
//$analogType - тип аналогов, описан классом \NS\TecDocSite\Common\AnalogTypes
$analogs = $tecDocRestClient->getAnalogs($number, $analogType);
bash
php composer.phar