Actions16
- Buscar serviço por filtro
- Buscar serviço por ID
- Buscar venda por filtro
- Buscar venda por ID
- Buscar pessoas por filtro
- Buscar pessoa por ID
- Buscar centros de custos
- Buscar categorias
- Buscar contas financeiras
- Buscar produtos por filtro
- Buscar receitas por filtro
- Buscar despesas por filtro
- Buscar parcela por ID
- Criar produto
- Criar pessoa
- Criar venda
Overview
This node integrates with the Conta Azul API, a financial and business management platform. Specifically, the "Buscar receitas por filtro" (Search revenues by filter) operation allows users to query revenue records filtered by various criteria such as name, number, and due date range.
Common scenarios for this node include:
- Retrieving a list of revenues within a specific due date range for financial reporting.
- Searching for revenues by partial names or numbers to quickly locate specific entries.
- Paginating through large sets of revenue data to process or analyze them in batches.
Practical example:
A user wants to fetch all revenues due between January 1st and January 31st, 2024, that contain the term "consulting" in their description, retrieving 20 items per page starting from page 1.
Properties
| Name | Meaning |
|---|---|
| Busca (receita) | Search term to filter revenues by name, number, or other text identifiers. |
| Página (receita) | Page number of the results to retrieve (pagination). |
| Tamanho da página (receita) | Number of items to return per page (pagination size). |
| Data de vencimento (de) | Start date of the due date range filter (required, format YYYY-MM-DD). |
| Data de vencimento (até) | End date of the due date range filter (required, format YYYY-MM-DD). |
Output
The node outputs JSON data containing the list of revenues matching the specified filters. The structure typically includes metadata about pagination and an array of revenue objects with details such as revenue ID, name, amount, due date, and other relevant financial information.
No binary data output is indicated for this operation.
Dependencies
- Requires an OAuth2 API credential for authentication with the Conta Azul API.
- The node depends on the external Conta Azul service being available and accessible.
- Proper configuration of the OAuth2 credentials in n8n is necessary for successful API calls.
Troubleshooting
- Missing required dates: The operation requires both start and end due dates. Omitting these will likely cause errors.
- Invalid date formats: Dates must be in the YYYY-MM-DD format; incorrect formats may lead to request failures.
- API authentication errors: Ensure the OAuth2 credentials are correctly set up and have not expired.
- Pagination issues: Requesting pages beyond the available range may return empty results.
- Network or API downtime: Connectivity problems or Conta Azul API outages can cause errors; verify network access and API status.