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, allowing users to perform various operations on Tallyfy resources. Specifically for the Task resource and the Clone operation, the node enables cloning an existing task by its ID. This is useful when you want to duplicate a task with all its properties quickly without manually recreating it.
Common scenarios include:
- Duplicating recurring or similar tasks in workflows.
- Creating templates of tasks that can be reused.
- Automating task replication as part of larger process automation.
Example: You have a task "Review Document" that needs to be cloned multiple times for different projects. Using this node's clone operation, you provide the original task ID, and it creates a copy instantly.
Properties
| Name | Meaning |
|---|---|
| Task ID | The ID of the task to be cloned |
Output
The output contains the JSON representation of the cloned task returned from the Tallyfy API. It includes all details of the newly created task such as its ID, title, status, assignees, deadlines, and other metadata.
If multiple input items are processed, the output will be an array of cloned task objects corresponding to each input.
No binary data is involved in this operation.
Dependencies
- Requires an API key credential for authenticating with the Tallyfy API.
- The node uses the base URL
https://go.tallyfy.com/apior a custom base URL if provided in credentials. - Requires the organization ID configured in the credentials to target the correct Tallyfy organization.
Troubleshooting
- Invalid Task ID: If the provided Task ID does not exist or is incorrect, the API will return an error. Verify the Task ID is correct.
- Authentication Errors: Ensure the API key credential is valid and has permissions to clone tasks.
- API Rate Limits: Excessive cloning requests may hit rate limits; consider adding delays or batching.
- Network Issues: Connectivity problems can cause request failures; check network access to the Tallyfy API endpoint.
Error messages from the API are passed through. Common errors include 404 Not Found (invalid task), 401 Unauthorized (bad credentials), and 429 Too Many Requests (rate limiting).
Links and References
- Tallyfy API Documentation (for detailed API endpoints and payloads)
- Tallyfy Official Website