Flowyteam icon

Flowyteam

Custom node for Flowyteam API

Actions101

Overview

This node interacts with the Flowyteam API to manage various resources related to organizational and project management. Specifically, for the KPI Data resource with the Delete operation, it deletes a KPI Data record identified by a given Record ID. This is useful in scenarios where outdated or incorrect KPI data needs to be removed from the system to maintain accurate performance tracking.

Practical examples include:

  • Removing a KPI data entry that was mistakenly added.
  • Cleaning up KPI data records after a performance review cycle ends.
  • Deleting obsolete KPI data to keep the dataset relevant and manageable.

Properties

Name Meaning
Record ID The ID of the KPI Data record to delete

Output

The node outputs JSON data representing the result of the delete operation on the KPI Data record. Typically, this will confirm whether the deletion was successful and may include metadata about the deleted record or status messages.

No binary data output is involved in this operation.

Dependencies

  • Requires an active connection to the Flowyteam API.
  • Needs an API authentication token or API key credential configured in n8n to authorize requests.
  • The node depends on the Flowyteam API endpoints for managing KPI Data records.

Troubleshooting

  • Common issues:

    • Providing an invalid or non-existent Record ID will likely cause the delete operation to fail.
    • Missing or incorrect API credentials will prevent the node from authenticating with the Flowyteam API.
    • Network connectivity problems can cause timeouts or failed requests.
  • Error messages and resolutions:

    • "Record not found" — Verify that the Record ID is correct and exists in the system.
    • "Authentication failed" — Check that the API key or token is correctly set up and has sufficient permissions.
    • "Operation not supported" — Ensure the Resource is set to "KPI Data" and Operation to "Delete".
    • Timeout or network errors — Confirm network connectivity and API availability.

Links and References

  • Flowyteam API documentation (for KPI Data management) — consult the official API docs for detailed endpoint behavior and request/response formats.
  • n8n documentation on creating custom nodes and using API credentials.

Discussion