OpenProject icon

OpenProject

Interact with OpenProject via API

Actions199

Overview

This node allows you to delete a specific query in the OpenProject system by its unique identifier. It is useful when you want to programmatically remove saved queries that are no longer needed, helping to keep your project management environment clean and organized. For example, if you have automated workflows that generate temporary queries for reporting or data extraction, this node can be used to delete those queries once they have served their purpose.

Properties

Name Meaning
Id The unique numeric identifier of the query to delete

Output

The node outputs JSON data representing the result of the delete operation. Typically, this will include confirmation of deletion or any relevant status information returned by the OpenProject API. There is no indication that binary data is output by this node.

Dependencies

  • Requires an API key credential to authenticate with the OpenProject API.
  • Needs the base URL of the OpenProject instance configured in the credentials.
  • Depends on the OpenProject REST API being accessible and the user having permission to delete queries.

Troubleshooting

  • Common issues:

    • Providing an invalid or non-existent query ID will likely result in an error from the API indicating the resource was not found.
    • Insufficient permissions may cause authorization errors.
    • Network connectivity problems or incorrect base URL configuration can prevent successful API calls.
  • Error messages:

    • "Query not found" or similar indicates the specified ID does not exist.
    • "Unauthorized" or "Forbidden" suggests missing or invalid API credentials or insufficient user rights.
  • Resolutions:

    • Verify the query ID exists before attempting deletion.
    • Ensure the API key has appropriate permissions.
    • Check the base URL and network connectivity.

Links and References

Discussion