PHP code example of unetway / aircrm

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

    

unetway / aircrm example snippets

`
$client->company()->update($id, [
    'name' => $name,
    'email' => $email,
    'domain' => $domain,
    'phones' => $phones,
    'street' => $street,
    'city' => $city,
    'state' => $state,
    'postal_code' => $postal_code,
    'iin' => $iin,
    'kpp' => $kpp,
    'legal_address' => $legal_address,
    'actual_address' => $actual_address,
    'bank' => $bank,
    'account_number' => $account_number,
    'bik' => $bik,
    'corr_check' => $corr_check
]);