PHP code example of kiriunin / tinkoff-business-api

1. Go to this page and download the library: Download kiriunin/tinkoff-business-api 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/ */

    

kiriunin / tinkoff-business-api example snippets


// Пример 1. Получение ИНН компании
use Kiriunin\TinkoffBusinessApi\Tinkoff;

// Создать клиент с токеном
$tinkoff = Tinkoff::create('YOUR_TOKEN');

// Или создать Sandbox-клиент
$tinkoff = Tinkoff::create('SANDBOX_TOKEN', true);

// Так же, можно указать дополнительные опции Guzzle, например для Proxy
$tinkoff = Tinkoff::create('YOUR_TOKEN', false, ['proxy' => 'http://localhost:8125']);

// Сделать запрос на получение данных о компании и ее реквизитов
$companyInn = $tinkoff->company()
                    ->get()
                    ->getRequisites()
                    ->getInn();

// Пример 2. Получение выписки по счету за сегодняшний день
use Kiriunin\TinkoffBusinessApi\Tinkoff;
use Kiriunin\TinkoffBusinessApi\Schema\Requests\BankStatementRequest;

// Создать клиент с токеном
$tinkoff = Tinkoff::create('YOUR_TOKEN');

// Создать запрос
$request = new BankStatementRequest('ACCOUNT_ID');

// Установить сегодняшнюю дату 
$request->setFrom(new DateTime());

// Сделать запрос на получение выписки по счету
$statement = $tinkoff->accounts()->statement($request);