Actions32
- Contatos Actions
- Oportunidades Actions
- Tarefas Actions
- Produtos Actions
- Funis Actions
- Campos Personalizados Actions
- Notas Actions
- Anexos Actions
- Propostas Actions
- Webhooks Actions
Overview
This node integrates with the Linqer CRM API to manage various CRM resources, including proposals. Specifically, for the "Propostas" (Proposals) resource and the "Deletar" (Delete) operation, it allows users to delete a proposal by its ID. This is useful in scenarios where outdated or incorrect proposals need to be removed from the CRM system to maintain data accuracy.
Practical example: If a sales team wants to automate cleanup of rejected or obsolete proposals, this node can be used within an n8n workflow to delete those proposals automatically based on certain triggers or conditions.
Properties
| Name | Meaning |
|---|---|
| ID da Proposta | The unique identifier of the proposal to be deleted |
Output
The output of the delete operation is the JSON response returned by the Linqer CRM API after attempting to delete the specified proposal. Typically, this will include confirmation of deletion or an error message if the deletion failed.
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential for authenticating requests to the Linqer CRM API.
- The node expects the API base URL and authentication details to be configured via this credential.
- The node uses HTTP DELETE requests to the endpoint
/v1/proporsal/public/{proposalId}to perform deletions.
Troubleshooting
Common issues:
- Providing an invalid or non-existent proposal ID will likely result in an error from the API indicating that the proposal was not found.
- Missing or incorrect API credentials will cause authentication failures.
- Network connectivity issues may prevent successful API calls.
Error messages:
"Operação \"delete\" não suportada para propostas": This indicates an unsupported operation; ensure the operation parameter is correctly set to "delete".- API errors related to authorization or resource not found should be checked against the provided proposal ID and API key validity.
Resolution tips:
- Verify the proposal ID exists in the Linqer CRM before attempting deletion.
- Confirm that the API key credential is valid and has sufficient permissions.
- Check network connectivity and API endpoint accessibility.
Links and References
- Linqer CRM API documentation (for proposals): Linqer CRM API Docs (Note: link is illustrative as actual URL is not provided in source)
