OpenProject icon

OpenProject

Interact with OpenProject via API

Actions199

Overview

This node allows updating a specific query form in the "Queries" resource of an external system (likely OpenProject, based on context). It is useful when you want to programmatically modify the properties of an existing query, such as changing its name. For example, you might use this node to rename saved queries dynamically based on workflow conditions or user input.

Properties

Name Meaning
Id The unique identifier of the query to update. This is a required numeric value.
Name The new name for the query. This is a string value representing the updated query name.

Output

The node outputs JSON data representing the updated query object returned from the API after the update operation. This typically includes the query's current state with all its properties reflecting the changes made. There is no indication that binary data is output by this node.

Dependencies

  • Requires an API key credential to authenticate requests to the external service.
  • Needs the base URL of the API endpoint configured in the credentials.
  • Depends on the external API supporting query update operations via HTTP PATCH or PUT methods (implied by routing configuration).

Troubleshooting

  • Missing or invalid Id: Since the Id property is required, omitting it or providing an invalid number will cause errors. Ensure the Id corresponds to an existing query.
  • API authentication errors: If the API key or base URL is incorrect or missing, the node will fail to connect. Verify credential settings.
  • Invalid name format: Providing an empty or malformed name might be rejected by the API. Validate input before execution.
  • Network issues: Connectivity problems can cause timeouts or failures; check network access to the API endpoint.

Links and References

Discussion