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 enables searching tasks within the Tallyfy workflow automation platform. It allows users to perform targeted searches for tasks based on a search query string. This is useful in scenarios where you want to quickly find specific tasks across your organization’s workflows, such as locating tasks by keywords, filtering tasks for reporting, or integrating task search into automated processes.
For example, you could use this node to:
- Find all tasks related to a particular project or keyword.
- Automate retrieval of tasks matching certain criteria for further processing.
- Integrate with other systems by fetching relevant tasks dynamically.
Properties
| Name | Meaning |
|---|---|
| Search Query | The search query string used to find tasks. This is a required text input where you specify what to look for in tasks. |
Output
The output is an array of JSON objects representing the tasks that match the search query. Each item contains the full data of a task as returned by the Tallyfy API. The structure typically includes task details such as ID, title, status, assignees, deadlines, and other metadata.
No binary data is output by this node.
Example output snippet (simplified):
[
{
"json": {
"id": "task123",
"title": "Review Project Plan",
"status": "active",
"assignees": ["user1", "user2"],
"deadline": "2024-07-01T12:00:00Z",
...
}
},
...
]
Dependencies
- Requires an API key credential for authenticating with the Tallyfy platform.
- Needs the base URL and organization ID configured via credentials.
- Uses HTTP requests to Tallyfy's REST API endpoints.
Troubleshooting
- Empty results: Ensure the search query is correctly specified and matches existing tasks.
- Authentication errors: Verify that the API key credential is valid and has access to the organization.
- Rate limits or API errors: Check Tallyfy API usage limits and error messages; handle retries or adjust request frequency.
- Invalid parameters: Confirm that the "Search Query" property is not empty and properly formatted.
Links and References
- Tallyfy API Documentation (for detailed API endpoint info)
- Tallyfy Workflow Automation Platform