Actions40
- Company Actions
- Note Actions
- Note Relation Actions
- Opportunity Actions
- Person Actions
- Pipeline Actions
- Task Actions
- Task Relation Actions
Overview
This node integrates with the Dalil AI API to manage various CRM-related resources such as people, companies, notes, opportunities, pipelines, tasks, and their relations. Specifically for the Task resource with the Delete operation, it deletes a task identified by its unique UUID.
Use cases include automating task management workflows where tasks need to be programmatically removed from the Dalil AI system based on certain triggers or conditions in your automation. For example, you might delete a task when a related project is completed or canceled.
Properties
Name | Meaning |
---|---|
Task ID | UUID string of the task to delete |
The node requires the "Task ID" property, which uniquely identifies the task to be deleted.
Output
The output JSON contains a confirmation of the deletion:
{
"success": true,
"id": "the-task-uuid"
}
success
: A boolean indicating whether the deletion was successful.id
: The UUID of the deleted task.
No binary data is output by this operation.
Dependencies
- Requires an active connection to the Dalil AI API.
- Requires an API authentication credential configured in n8n (an API key or token).
- The node uses HTTP DELETE requests to the
/rest/tasks/{taskId}
endpoint of the Dalil AI API.
Troubleshooting
- Invalid Task ID: If the provided Task ID is not a valid UUID or does not exist, the API will likely return an error. Ensure the Task ID is correct.
- Authentication Errors: Missing or invalid API credentials will cause authentication failures. Verify that the API key/token is correctly set up in n8n credentials.
- Network Issues: Connectivity problems can prevent the node from reaching the Dalil AI API.
- API Rate Limits: Excessive requests may trigger rate limiting; handle errors accordingly.
- Continue On Fail: If enabled, the node will continue processing other items even if one deletion fails, returning error details in the output JSON.
Links and References
- Dalil AI API Documentation (hypothetical link, replace with actual if available)
- n8n Documentation on Creating Custom Nodes
- General info on UUID format