https://github.com/andersao/tinyerp-client
https://github.com/andersao/tinyerp-client
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/andersao/tinyerp-client
- Owner: andersao
- Created: 2024-07-29T20:57:17.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-08-11T20:23:00.000Z (11 months ago)
- Last Synced: 2025-04-01T22:54:05.585Z (3 months ago)
- Language: PHP
- Size: 74.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tiny ERP Client (API v2)
```php
$client = new Client('token');$retorno = $client->info()->get();
$entity = $retorno->data();
echo $entity->razao_social;
``````php
$retorno = $client->produto()->retrieve(349112581);
$entity = $retorno->data();
echo $entity->nome;
```