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 to manage OKR (Objectives and Key Results) key results. Specifically, the Delete operation for the OKR Key Result resource allows users to remove a specific key result by its ID.
Use cases include automating the cleanup or removal of obsolete or incorrect key results from your OKR tracking system within Flowyteam. For example, if a key result was created in error or is no longer relevant, this node can delete it programmatically as part of an automated workflow.
Properties
| Name | Meaning |
|---|---|
| Key Result ID | The unique identifier of the key result to delete |
The property "Key Result ID" is required and must be provided as a string representing the ID of the key result you want to delete.
Output
The output of the delete operation typically contains a JSON object indicating the success or failure of the deletion request. It may include confirmation details such as the deleted key result's ID or status messages returned by the Flowyteam API.
No binary data output is expected from this operation.
Dependencies
- Requires an active connection to the Flowyteam API.
- Requires an API authentication token or API key credential configured in n8n to authorize requests.
- The node depends on the Flowyteam API endpoints for managing OKR key results.
Troubleshooting
Common issues:
- Providing an invalid or non-existent Key Result ID will likely cause the API to return an error.
- Missing or incorrect API credentials will prevent successful communication with the Flowyteam API.
- Network connectivity issues can cause timeouts or failures.
Error messages:
- Errors related to authorization usually indicate missing or invalid API keys; verify your credentials.
- "Key Result not found" or similar errors mean the specified ID does not exist; double-check the ID.
- General API errors might require checking the Flowyteam service status or reviewing request limits.
Links and References
- Flowyteam API Documentation (for detailed API usage and key result management)
- n8n documentation on creating custom nodes