Actions15
Overview
This node integrates with the Redmine API, allowing users to manage Redmine resources such as Issues, Projects, and Users. Specifically, for the Issue - Delete operation, it enables deleting an existing issue in Redmine by specifying its Issue ID. This is useful in workflows where issues need to be programmatically removed based on certain conditions or automated cleanup processes.
Practical examples include:
- Automatically deleting resolved or duplicate issues after a certain period.
- Removing test or placeholder issues created during automated testing.
- Cleaning up issues that were created erroneously via other automation steps.
Properties
Name | Meaning |
---|---|
Issue ID | The unique identifier of the issue to delete. This must be provided to specify which issue to remove. |
Output
The output JSON contains the result of the delete operation. Typically, for a successful deletion, the output may be empty or contain confirmation data depending on the API response. If the deletion fails, the output will include an error message describing the failure.
No binary data is output by this node.
Dependencies
- Requires connection to a Redmine instance via its REST API.
- Needs an API key credential for authentication with Redmine.
- The node expects the base URL of the Redmine server and a valid API key to be configured in the credentials.
Troubleshooting
Common issues:
- Invalid or missing Issue ID: The node requires a valid Issue ID to delete; ensure this is correctly set.
- Authentication errors: Verify that the API key and Redmine URL are correct and have sufficient permissions.
- Network connectivity problems: Ensure the Redmine server is reachable from the n8n environment.
Error messages:
"error": "Issue not found"
: The specified Issue ID does not exist. Check the ID value."error": "Unauthorized"
or similar: Authentication failed. Confirm API key validity and permissions.- Timeout or network errors: Check network settings and Redmine server availability.