PHP code example of rocketfellows / tinkoff-invest-v1-operations-rest-client

1. Go to this page and download the library: Download rocketfellows/tinkoff-invest-v1-operations-rest-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/ */

    

rocketfellows / tinkoff-invest-v1-operations-rest-client example snippets


$client = new Client(
    (
        new ClientConfig(
            'https://invest-public-api.tinkoff.ru/rest',
            <your_access_token>
        )
    ),
    new \GuzzleHttp\Client()
);

$operationsService = new OperationsService($client);

$operationsService->getPortfolio([
    "accountId" => "<your_account_id>",
]);