Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andersao/tinyerp-client
https://github.com/andersao/tinyerp-client
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/andersao/tinyerp-client
- Owner: andersao
- Created: 2023-12-25T21:35:56.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-16T22:16:09.000Z (12 months ago)
- Last Synced: 2024-04-24T03:15:58.956Z (9 months ago)
- Language: PHP
- Size: 60.5 KB
- Stars: 0
- Watchers: 2
- 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;
```