Actions54
- Blueprint Actions
- Process Actions
- Task Actions
- Form Field Actions
- Comment Actions
- User Actions
- Guest Actions
- Group Actions
- Search Actions
- ID Finder Actions
Overview
This node integrates with the Tallyfy workflow automation platform to manage tasks programmatically. Specifically, the Task Delete operation allows users to delete an individual task by its ID within their Tallyfy organization.
Use cases include:
- Automating cleanup of obsolete or canceled tasks.
- Removing test or duplicate tasks created during workflow automation.
- Managing task lifecycle by deleting tasks that are no longer relevant.
For example, after completing a process or when a task is deemed unnecessary, this node can be used in an n8n workflow to delete the task automatically by specifying its Task ID.
Properties
| Name | Meaning |
|---|---|
| Task ID | The unique identifier of the task to delete |
Output
The output JSON contains the response from the Tallyfy API after attempting to delete the specified task. Typically, for a successful deletion, the API returns confirmation data or an empty object indicating the task was deleted.
If multiple input items are processed, the output will be an array of such responses, one per input item.
No binary data is produced by this operation.
Dependencies
- Requires an active connection to the Tallyfy API via an API key credential configured in n8n.
- The node uses the base URL
https://go.tallyfy.com/apior a custom base URL if provided in credentials. - Requires the organization ID to construct API endpoints.
- The user must have appropriate permissions in Tallyfy to delete tasks.
Troubleshooting
Common issues:
- Invalid or missing Task ID: Ensure the Task ID provided exists and is correct.
- Insufficient permissions: The API key used must have rights to delete tasks.
- Network or authentication errors: Verify API credentials and network connectivity.
Error messages:
"404 Not Found": The task with the given ID does not exist or is inaccessible."401 Unauthorized"or"403 Forbidden": Authentication failed or insufficient permissions."400 Bad Request": The request parameters are invalid; check the Task ID format.
Resolution tips:
- Double-check the Task ID value.
- Confirm API credentials and permissions.
- Review Tallyfy API documentation for endpoint requirements.
Links and References
- Tallyfy API Documentation (for detailed API usage)
- n8n HTTP Request Node (for understanding underlying HTTP calls)