prettus/tinyerp-client

There is no license information available for the latest version (0.0.22) of this package.

Tiny ERP Api v2 Client

0.0.22 2024-08-11 20:22 UTC

This package is auto-updated.

Last update: 2024-09-11 20:31:58 UTC


README

$client = new Client('token');

$retorno = $client->info()->get();
$entity = $retorno->data();
echo $entity->razao_social;
$retorno = $client->produto()->retrieve(349112581);
$entity = $retorno->data();
echo $entity->nome;