0.0.11 • Published 2 years ago

tinyerp-api v0.0.11

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years 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

2 years ago

0.0.10

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago

0.0.0

2 years ago