Actions101
- Attendance Actions
- Client Actions
- Department Actions
- Designation Actions
- Employee Actions
- Holiday Actions
- KPI Actions
- KPI Category Actions
- KPI Data Actions
- Lead Actions
- Leave Actions
- OKR Key Result Actions
- OKR Objective Actions
- Performance Cycle Actions
- Project Actions
- Project Category Actions
- Task Actions
- Task Category Actions
- Ticket Actions
- Ticket Agent Actions
- Ticket Channel Actions
- Ticket Type Actions
Overview
The node provides integration with the Flowyteam API to manage various resources related to organizational workflows. Specifically, for the Task resource with the Get operation, it retrieves detailed information about a specific task by its ID. This is useful in scenarios where you need to fetch and use task details within an automation workflow, such as tracking task status, updating dashboards, or triggering subsequent actions based on task data.
Practical examples:
- Fetching a task's details to check its current status before sending a notification.
- Retrieving task metadata to update project management tools or reports.
- Using task information to conditionally branch workflow logic.
Properties
| Name | Meaning |
|---|---|
| Task ID | The unique identifier of the task to retrieve. This is a required string input. |
Output
The output of the node is a JSON object representing the retrieved task's data from the Flowyteam API. This typically includes all relevant fields describing the task, such as its title, description, status, assigned users, deadlines, and other metadata defined by the API.
The node does not output binary data; all returned data is structured JSON suitable for further processing in n8n workflows.
Dependencies
- Requires an active connection to the Flowyteam API.
- Needs an API authentication token or API key credential configured in n8n under the node's credentials settings.
- The node depends on the Flowyteam API endpoints for tasks to perform the "get" operation.
Troubleshooting
Common issues:
- Invalid or missing Task ID: The node requires a valid task ID; ensure this is provided and correct.
- Authentication errors: Verify that the API key or token is correctly set up and has sufficient permissions.
- Network or API downtime: Check connectivity and Flowyteam service status if requests fail.
Error messages:
"The operation 'get' is not supported for Task resource": This indicates a misconfiguration or unsupported operation; verify the selected operation.- API response errors (e.g., 404 Not Found): Usually means the task ID does not exist or is inaccessible.
To resolve errors, confirm input parameters, credentials, and network access.
Links and References
- Flowyteam official API documentation (refer to their website or developer portal)
- n8n documentation on creating custom nodes and using API credentials