PHP code example of plakidan / key-crm

1. Go to this page and download the library: Download plakidan/key-crm 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/ */

    

plakidan / key-crm example snippets





ent = new \GuzzleHttp\Client([
        'base_uri' => 'https://openapi.keycrm.app/v1',
        'headers' => [
            'Authorization' => 'Bearer '.YOUR_API_KEY_HERE, // Ваш токен
        ],
    ]);

$apiInstance = new OpenAPI\Client\Api\BuyerApi(
    // Якщо ви хочете використовувати власний HTTP-клієнт, передайте свій клієнт, який реалізує `GuzzleHttp\ClientInterface`.
    // Це необов'язково, за замовчуванням буде використано `GuzzleHttp\Client`.
    $client
);
$update_existing_buyer_request = new \OpenAPI\Client\Model\UpdateExistingBuyerRequest(); // \OpenAPI\Client\Model\UpdateExistingBuyerRequest | Приклад об'єкту запиту для створення нового покупця
$accept = 'application/json'; // string | application/json

try {
    $result = $apiInstance->createNewBuyer($update_existing_buyer_request, $accept);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling BuyerApi->createNewBuyer: ', $e->getMessage(), PHP_EOL;
}