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 tasks ("Tarefas"). Specifically, for the "Deletar" (Delete) operation on the "Tarefas" resource, it deletes a task identified by its ID within a specified account. This is useful in scenarios where you want to automate cleanup or removal of completed or obsolete tasks from your CRM system.
For example, after a task is marked as done or no longer relevant, this node can be used in an automation workflow to remove it from Linqer CRM automatically, keeping your task list up-to-date without manual intervention.
Properties
| Name | Meaning |
|---|---|
| ID da Tarefa | The unique identifier of the task to be deleted. |
| Account ID | The identifier of the account under which the task exists; required for deletion action. |
Output
The output JSON contains the response from the Linqer CRM API after attempting to delete the specified task. Typically, this will be an object indicating success or failure of the deletion request. The exact structure depends on the API's response but usually includes status information or confirmation.
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for authenticating requests to the Linqer CRM API.
- The node uses HTTP DELETE requests to the endpoint
/v1/tasks/public/{taskId}. - The
accountIdis sent in the request body to specify the account context for the deletion. - Proper configuration of the Linqer CRM API URL and authentication credentials in n8n is necessary.
Troubleshooting
Common issues:
- Providing an incorrect or non-existent Task ID will result in an error from the API indicating the task was not found.
- Missing or invalid Account ID may cause the API to reject the request.
- Authentication failures if the API key credential is missing or invalid.
Error messages:
"Operation 'delete' not supported for tasks": This would occur if the operation parameter is incorrectly set; ensure "delete" is selected.- API errors related to authorization or resource not found should be checked against the provided IDs and credentials.
Resolution tips:
- Verify that the Task ID and Account ID are correct and exist in the Linqer CRM system.
- Confirm that the API key credential is properly configured and has sufficient permissions.
- Check network connectivity and API endpoint availability.
Links and References
- Linqer CRM API Documentation (general reference for endpoints and request formats)
- n8n Documentation on creating and using API credentials
- HTTP DELETE method usage in REST APIs
