Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
Signed-off-by: shoman4eg <askew.39rus@gmail.com>
  • Loading branch information
shoman4eg committed Jul 23, 2024
1 parent 27ea1ac commit 1eb6a9e
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,27 @@ $apiClient->authenticate($accessToken);
$userInfo = $apiClient->user()->get();
```

### Получить информацию о необходимых платежах
```php
$apiClient->authenticate($accessToken);

$userInfo = $apiClient->tax()->get();
```

### Получить информацию о платежах
```php
$apiClient->authenticate($accessToken);

$userInfo = $apiClient->tax()->payments();
```

### Получить информацию о прошлых платежах
```php
$apiClient->authenticate($accessToken);

$userInfo = $apiClient->tax()->history();
```

## Использованные ресурсы
Статья на Habr: [Автоматизация для самозанятых: как интегрировать налог с IT проектом](https://habr.com/ru/post/436656/)

Expand All @@ -265,4 +286,4 @@ $userInfo = $apiClient->user()->get();
[Сделать пожертвование автору](https://www.tinkoff.ru/cf/7rZnC7N4bOO)

## License
The MIT License (MIT). Please see [License File](LICENSE) for more information.
The MIT License (MIT). Please see [License File](LICENSE) for more information.

0 comments on commit 1eb6a9e

Please sign in to comment.