Actions42
- Condomínio Actions
- Plano de Contas Actions
- Conta Bancária Actions
- Movimentação Bancária Actions
- Unidade Actions
- Morador Actions
- Boleto Actions
- Recebimento Actions
- Fornecedor Actions
- Inadimplência Actions
- Segunda Via Actions
- Responsáveis Legais Actions
Overview
This node integrates with the Superlogica API, specifically allowing users to manage accounting plans ("Plano de Contas"). The "Criar Conta" operation enables creating a new account within a specified accounting plan. This is useful for financial management automation in condominium or property management systems where categorizing revenues and expenses accurately is essential.
Practical examples include:
- Automatically adding new revenue or expense accounts when setting up a new condominium's financial structure.
- Integrating with external financial software to keep the chart of accounts synchronized.
Properties
| Name | Meaning |
|---|---|
| ID do Plano de Contas | The identifier of the accounting plan where the new account will be created. |
| Índice da Conta | The index or code representing the account's position or classification (e.g., "1.1", "1.2"). |
| Descrição da Conta | A descriptive name for the account being created. |
| Natureza da Conta | The nature/type of the account; options are "Receita" (Revenue) or "Despesa" (Expense). |
Output
The node outputs JSON data representing the response from the Superlogica API after attempting to create the account. This typically includes details of the newly created account such as its ID, description, index, and nature.
If an error occurs during execution and the node is set to continue on failure, the output JSON will contain an error field with the error message.
No binary data output is involved in this operation.
Dependencies
- Requires valid credentials for the Superlogica API, including an API URL, application token, and access token.
- The node depends on the external Superlogica API service being accessible.
- Proper configuration of these credentials in n8n is necessary before use.
Troubleshooting
- Missing Credentials: If credentials are not provided or invalid, the node will throw an error indicating that credentials were not supplied.
- API Errors: Errors returned by the Superlogica API (e.g., invalid parameters, duplicate account indices) will cause the node to fail unless "Continue On Fail" is enabled.
- Invalid Property Values: Ensure that required properties like "ID do Plano de Contas", "Índice da Conta", "Descrição da Conta", and "Natureza da Conta" are correctly filled and conform to expected formats.
- Network Issues: Connectivity problems to the Superlogica API endpoint can cause timeouts or failures.
Links and References
- Superlogica API Documentation (official API docs for detailed endpoints and data structures)
- n8n Documentation on Creating Custom Nodes