0.0.11 • Published 1 year ago

tinyerp-api v0.0.11

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

Tiny ERP API

This project provides a TypeScript client for interacting with the TinyERP API.

Installation

npm i tinyerp-api

Usage

import TinyERP from 'tinyerp-api';

// Initialize the client with your API token
const client = new TinyERP('API_TOKEN_HERE');

// Example: Retrieve account information
client.getAccountInfo().then((response) => {
  console.log('Account Information:', response);
});

// Example: Search for customers
client.searchCustomers({ pesquisa: 'John Doe' }).then((response) => {
  console.log('Search Results:', response);
});

// Example: Get detailed information about a customer
client.getCustomer({ id: '123456' }).then((response) => {
  console.log('Customer Details:', response);
});

Service Implementation Progress

  • Account Data (Dados da conta)

  • Customers and Suppliers (Clientes e Fornecedores)

  • Products (Produtos)

  • Product Tag Groups (Grupos de Tags de Produtos)

  • Product Tags (Tags de Produtos)

  • Price Lists (Listas de Preços)

  • Sellers (Vendedores)

  • CRM

  • Accounts Receivable (Contas a receber)

  • Accounts Payable (Contas a pagar)

  • Webhooks

  • Shipping (Fretes)

  • Subscription (Inscrição)

  • Orders (Pedidos)

  • POS (PDV)

  • Invoices (Notas Fiscais)

  • Expeditions (Expedições)

  • Service Invoices (Notas Fiscais de Serviço)

  • Contracts (Contratos)

  • Separation (Separação)

  • Linked Tables (Tabelas Vinculadas)

  • Customer Service (Atendimento)

  • Location (Localização)

References

For more information, please refer to the official TinyERP API documentation.

0.0.11

1 year ago

0.0.10

1 year ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago

0.0.0

2 years ago