A simple sdk made to abstract most of the Asaas payment gateway api requests.
last update: 06/05/2024 Items updated:
- Global: Added option to disable automatic error logging (printError)
- Payments: Added support split array.
- [x] Customers (Clientes)
- [x] Payments (Cobranças)
- [ ] Notifications (Notificações)
- [x] Installments (Parcelamentos)
- [x] Subscriptions (Assinaturas)
- [ ] Pix (Pix)
- [ ] Pix Transactions (Transações Pix)
- [ ] Payment Links (soon) (Link de pagamentos)
- [x] Transfers (Transferências)
- [ ] Anticipations (Antecipações)
- [ ] Payment Dunnings (Negativações)
- [x] Bill (Pagamento de contas)
- [ ] Mobile Phone Recharges (Recargas de celular)
- [ ] Credit Bureau Report (Consulta Serasa)
- [ ] Financial Transactions (Extrato)
- [ ] Finance (Informações financeiras)
- [x] My Account (Informações e personalização da conta)
- [x] Invoices (Notas fiscais)
- [ ] Fiscal Info (Informações fiscais)
- [x] Webhooks (Configurações de Webhooks)
- [x] Accounts (Subcontas Asaas)
- [ ] Documents (Envio de documentos White Label)
Import the package and instantitate a new Client:
import { AsaasClient } from 'asaas';
const asaas = new AsaasClient(process.env.ASAAS_API_KEY);
Every request to the Asaas API needs an API Key, which must be passed as the first parameter in the constructor. To obtain your API Key, access the Integration Tab in the Account Settings area.
Optionally you can set base url, enable sandbox mode and set sandbox mode base url.
import { AsaasClient } from 'asaas';
//Instantiate a new client
const asaas = new AsaasClient(process.env.ASAAS_API_KEY, {
//baseUrl?: string (default: https://api.asaas.com/v3);
//sandbox?: boolean;
//sandboxUrl?: string (default: https://sandbox.asaas.com/api/v3);
//printError?: boolean (default: true); // Determines whether errors will be automatically logged to the console
});
To enable Sandbox Mode, pass to the client's constructor, as the second parameter, an object with sandbox
information as true
. The default sandbox URL is https://sandbox.asaas.com/api/v3
import { AsaasClient } from 'asaas';
const asaas = new AsaasClient(process.env.ASAAS_API_KEY, {
sandbox: true;
//sandboxUrl?: string (default: https://sandbox.asaas.com/api/v3);
//baseUrl?: string (default: https://api.asaas.com/v3);
});
By default, the library automatically logs errors to the console when request failures occur. You can disable this behavior by setting the printError
option to false
:
import { AsaasClient } from 'asaas';
const asaas = new AsaasClient(process.env.ASAAS_API_KEY, {
printError: false // Disables automatic error logging to the console
});
Returns customers. Filters can be applied, passing an object with the items allowed in the official documentation.
import { AsaasClient } from 'asaas';
const asaas = new AsaasClient(process.env.ASAAS_API_KEY, {
// sandbox: boolean;
//sandboxUrl?: string (default: https://sandbox.asaas.com/api/v3);
//baseUrl?: string (default: https://api.asaas.com/v3);
});
//It lists all registered customers and makes a filter by email.
await asaas.customers.list({
email: "email@email.com"
});
Parameter | Type | Description |
---|---|---|
name |
string |
Filter by Name. |
email |
string |
Filter by Email. |
cpfCnpj |
string |
Filter by CPF or CNPJ. |
groupName |
string |
Filter by Group. |
externalReference |
string |
Filter by External Reference. |
offset |
number |
Offset of search. |
limit |
number |
Limit of results. |
import { AsaasClient } from 'asaas';
const asaas = new AsaasClient(process.env.ASAAS_API_KEY, {
// sandbox: boolean;
//sandboxUrl?: string (default: https://sandbox.asaas.com/api/v3);
//baseUrl?: string (default: https://api.asaas.com/v3);
});
//It returns a customer by ID.
await asaas.customers.getById("cus_123abcde456");
Parameter | Type | Description |
---|---|---|
id |
string |
Required. Customer ID |
Returns payments. Filters can be applied, passing an object with the items allowed in the official documentation.
import { AsaasClient } from 'asaas';
const asaas = new AsaasClient(process.env.ASAAS_API_KEY, {
// sandbox: boolean;
//sandboxUrl?: string (default: https://sandbox.asaas.com/api/v3);
//baseUrl?: string (default: https://api.asaas.com/v3);
});
//It lists all registered payments and makes a filter by customer ID.
await asaas.payments.list({
customer: "cus_123abcde456"
});
Parameter | Type | Description |
---|---|---|
customer |
string |
Filter by Customer ID. |
customerGroupName |
string |
Filter by Customer group name. |
billingType |
string |
Filter by Billing Type. |
status |
string |
Filter by Status. |
subscription |
string |
Filter by Subscription ID. |
installment |
string |
Filter by Installment ID. |
externalReference |
string |
Filter by External Reference. |
paymentDate |
` |