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, allowing users to manage various resources related to organizational and project management. Specifically, for the Task Category resource with the Get operation, this node retrieves details of a specific task category by its ID. This is useful in scenarios where you want to fetch metadata or configuration about a particular category of tasks within your project or workflow management system.
Practical examples include:
- Fetching the details of a task category to display or use in conditional logic.
- Retrieving category information before updating or deleting it.
- Integrating task category data into reports or dashboards.
Properties
| Name | Meaning |
|---|---|
| Category ID | The ID of the task category to retrieve |
Output
The output of the node's execute() method for the Task Category "Get" operation is a JSON object representing the requested task category. This typically includes all relevant fields describing the task category such as its name, description, ID, and any other metadata provided by the Flowyteam API.
If multiple items are returned (though for "Get" usually one item), they are output as an array of JSON objects.
The node does not output binary data for this operation.
Dependencies
- Requires an active connection to the Flowyteam API.
- Requires an API authentication token or API key credential configured in n8n under the node's credentials.
- The node depends on the Flowyteam API endpoints for task categories.
Troubleshooting
- Missing or invalid Category ID: Ensure that the "Category ID" property is provided and valid; otherwise, the API call will fail.
- Authentication errors: Verify that the API key or token credential is correctly set up and has sufficient permissions.
- Resource or operation not supported error: If the node throws an error about unsupported operations, confirm that the resource is set to "Task Category" and operation to "Get".
- API connectivity issues: Check network connectivity and Flowyteam API status if requests time out or fail.
Links and References
- Flowyteam API Documentation (general reference for API endpoints)
- n8n documentation on Creating Custom Nodes