Actions15
Overview
This node integrates with the Redmine API, a project management web application. It allows users to perform various operations on Redmine resources such as Issues, Projects, and Users. Specifically for the User Delete operation, it enables deleting a user from the Redmine system by specifying the user's ID.
Common scenarios where this node is beneficial include automating user management tasks in Redmine, such as removing inactive or obsolete users programmatically as part of workflow automation or administrative cleanup.
Example use case: Automatically delete a user after they leave an organization by triggering this node with their User ID.
Properties
Name | Meaning |
---|---|
User ID | The ID of the user to be deleted. This is a required string input that identifies which user will be removed from Redmine. |
Output
The output of the node is an array of JSON objects corresponding to each input item processed. For the User Delete operation, the output typically contains confirmation of the deletion or relevant response data from the Redmine API.
json
: Contains the response from the Redmine API regarding the deletion request. If successful, it may be empty or contain status information.- In case of failure (if "Continue On Fail" is enabled), the output includes an error message under
json.error
.
No binary data output is expected from this operation.
Dependencies
- Requires access to a Redmine instance via its REST API.
- Needs an API key credential for authentication with Redmine.
- The node expects the Redmine base URL and API key to be configured in the credentials.
Troubleshooting
Common issues:
- Invalid or missing User ID: Ensure the User ID provided exists in Redmine.
- Authentication errors: Verify that the API key and Redmine URL are correctly set in the credentials.
- Permission errors: The API key must have sufficient permissions to delete users.
Error messages:
"error": "User not found"
: The specified User ID does not exist."error": "Unauthorized"
or similar: Check API key validity and permissions.- Network or connection errors: Confirm the Redmine URL is reachable.
To resolve errors, verify input parameters, credentials, and network connectivity.