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
This node provides integration with the Flowyteam API, allowing users to manage various resources related to workforce and project management. Specifically for the KPI Category resource with the Delete operation, the node enables deleting a KPI category by its unique identifier.
Use cases include automating the removal of obsolete or incorrect KPI categories from your performance management system. For example, if a KPI category is no longer relevant to your organization's goals, you can delete it programmatically as part of a workflow that maintains your KPI structure.
Properties
| Name | Meaning |
|---|---|
| KPI Category ID | The unique identifier (ID) of the KPI category to delete |
Output
The output of the node after performing the delete operation typically contains a JSON object confirming the deletion. This may include status information or details about the deleted KPI category, depending on the API response.
No binary data output is involved in 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 managing KPI categories.
Troubleshooting
Common issues:
- Providing an invalid or non-existent KPI Category ID will likely result in an error from the API indicating the resource was not found.
- Missing or incorrect API credentials will cause authentication failures.
- Network connectivity issues can prevent the node from reaching the Flowyteam API.
Error messages:
"The operation 'delete' is not supported for KPI Category resource": This would indicate a misconfiguration or unsupported operation; however, the code confirms delete is supported.- API errors such as "Not Found" or "Unauthorized" should be resolved by verifying the KPI Category ID and API credentials respectively.
Links and References
- Flowyteam API Documentation (general reference for API endpoints)
- n8n documentation on creating custom nodes