OpenProject icon

OpenProject

Interact with OpenProject via API

Actions199

Overview

This node allows you to delete a specific group in the OpenProject system by providing the group's unique identifier. It is useful for managing user groups programmatically, such as removing obsolete or unwanted groups from your project management environment. For example, if a team is disbanded or a group is no longer needed, this node can automate the deletion process within workflows.

Properties

Name Meaning
Id The unique numeric identifier of the group to be deleted.

Output

The node outputs JSON data representing the result of the delete operation. Typically, this will confirm whether the group was successfully deleted or provide error information if the deletion failed. There is no binary output associated with this operation.

Dependencies

  • Requires an API key credential for authenticating with the OpenProject API.
  • The node depends on the OpenProject REST API being accessible at the URL specified in the credentials.
  • Proper permissions are required for the API key to perform group deletions.

Troubleshooting

  • Common issues:

    • Providing an invalid or non-existent group ID will result in an error.
    • Insufficient permissions for the API key may cause authorization errors.
    • Network connectivity problems or incorrect base URL configuration can prevent successful API calls.
  • Error messages and resolutions:

    • "Group not found": Verify that the provided group ID exists.
    • "Unauthorized" or "Forbidden": Check that the API key has the necessary rights to delete groups.
    • "Network error" or "Could not connect": Confirm the OpenProject URL and network access.

Links and References

Discussion