Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Latest commit

 

History

History
34 lines (26 loc) · 783 Bytes

README.md

File metadata and controls

34 lines (26 loc) · 783 Bytes

bling-erp.js

Biblioteca para interagir com o Bling ERP API.

Não recomendo usar essa lib, pois está na versão v2 da API do Bling, que está descontinuada.

Outra opção de lib em typescript: https://github.com/AlexandreBellas/bling-erp-api-js?tab=readme-ov-file

Recursos

  • Produtos: add, update, delete, getAll, getBySku
  • Pedidos: add, update, getAll, getByNumber
  • Pedidos de Compras: add, update, getAll, getByNumber
  • Contatos: add, update, getAll, getById
  • Categorias: getAll
  • Paginação automática
  • Filtros

Exemplos

Crie uma instância:

const bling = new Bling({
    apikey: apikey,
})

Buscar produto pelo SKU:

async function buscarProdutoPeloSKU () {
  return await bling.produtos.getBySku( sku )
}

Abra um Issue para tirar dúvidas.