Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/andersao/tinyerp-client


https://github.com/andersao/tinyerp-client

Last synced: about 2 months ago
JSON representation

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;
```