prettus/tinyerp-client

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

Tiny ERP Api v2 Client

Maintainers

Package info

github.com/andersao/tinyerp-client

pkg:composer/prettus/tinyerp-client

Statistics

Installs: 90

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

0.0.22 2024-08-11 20:22 UTC

This package is auto-updated.

Last update: 2026-03-12 00:03:10 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;