npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

asaas-nodejs

v1.0.2

Published

A wrapper to Asaas API

Downloads

3

Readme

asaas-nodejs

A wrapper to Asaas API

Um wrapper em NodeJS para a API de pagamento do Asaas Para utilizá-la, você deve fazer um cadastro para receber sua Access Token.

Para utilizar este wrapper, simplesmente inclua o módulo através de um require

var asaas = require('asaas-nodejs');

Configure seu ambiente homologacao ou producao e sua access token:

asaas.settings.setAccessToken( 'sua_access_token');
asaas.settings.setEnvironment('homologacao || producao');

Toda chamada a API deve conter uma função callback seguindo o padrão NodeJS, ou seja, primeiro argumento deve ser uma váriavel de erro(se existir) e o segundo uma variável de sucesso(se não houver erro).

Os métodos que tiverem um parâmetro filter devem receber um objeto chave-valor referente ao filtro ou o valor null.

// com filtros
asaas.payment.getAll({status:'OVERDUE'},function(err, data){

});

// sem filtros
asaas.payment.getAll(null,function(err, data){

});

Os métodos que tiverem um parâmetro data devem receber um objeto chave-valor contendo os dados.

Exemplo:

asaas.customer.create({'name': 'nodejs','email':'[email protected]'},function(err, data){
	if(err){
		// HTTP 400, 401,404,500
		// tratar erro
	} else {
		// HTTP 200
		// variável data é a mesma que retorna no retorno 200 da API oficial
	}
});

Clientes

// retorna todos os clientes
asaas.customers.getAll(filters || null,callback);

// retorna determinado cliente por id
asaas.customers.getById(id,callback);

// retorna cliente por email
asaas.customers.getByEmail(email,callback);

// cria um cliente
asaas.customers.create({name: 'nome',email: '[email protected]'},callback);

// atualiza determinado cliente por id
asaas.customers.update('cus_abc123',{name: 'novo nome',address: 'nova rua'},callback);

// exclui determinado cliente por id
asaas.customers.delete(id);

Assinaturas

// retorna todas as assinaturas
asaas.subscriptions.getAll(filters || null, callback);

// retorna determinada assinatura por id
asaas.subscriptions.getById(id,callback);

// retorna as assinaturas de determinado cliente com o customer_id
asaas.subscriptions.getByCustomer(filters || null, customer_id,callback);

// cria uma nova assinatura
asaas.subscriptions.create(data,callback);

// atualiza determinada assinatura por id
asaas.subscriptions.update(id,data,callback)

// deleta determinada assinatura por id
asaas.subscriptions.delete(id,callback)

Cobranças

// retorna todas as cobranças
asaas.payments.getAll(filters || null, callback);

// retorna determinada cobrança por id
asaas.payments.getById(id,callback);

// retorna cobranças de um determinado cliente
asaas.payments.getByCustomer(filters || null, customer_id, callback);

// retorna cobranças de uma determinada assinatura
asaas.payments.getBySubscription(filters || null, subscription_id, callback);

// cria uma nova cobrança
asaas.payments.create(data, callback);

// atualiza uma determinada cobrança por id
asaas.payments.update(id,data,callback);

// deleta uma determinada cobrança por id
asaas.payments.delete(id,callback);

Cidades

// retorna todas as cidades
asaas.cities.getAll(filters || null,callback);

// retorna determinada cidade por id
asaas.cities.getById(id,callback);

// retorna determinada cidade por nome
asaas.cities.getByName(name, callback);

BASEADO NO REPOSITÓRIO DO MarcoNicolodi

Modulo de integração Node.js baseado no repositório MarcoNicolodi/asaas/nodejs-sdk, Todos créditos ao mesmo.