Actions15
Overview
This node integrates with the Redmine API, a project management web application. Specifically, for the Project - Delete operation, it allows users to delete a project by specifying its unique Project ID. This is useful in scenarios where projects are no longer needed or were created by mistake and need to be removed from the Redmine system.
Practical examples include:
- Automating cleanup of obsolete projects.
- Removing test projects after automated testing.
- Managing project lifecycle by deleting completed or cancelled projects programmatically.
Properties
Name | Meaning |
---|---|
Project ID | The unique identifier of the project to delete. This is a required string input. |
Output
The node outputs JSON data representing the result of the delete operation. Typically, this will confirm whether the deletion was successful or provide error information if it failed.
If the operation fails and "Continue On Fail" is enabled, the output JSON will contain an error
field with the error message describing what went wrong.
No binary data output is involved in this operation.
Dependencies
- Requires connection to a Redmine instance via its REST API.
- Needs an API key credential for authentication with the Redmine server.
- The Redmine URL and API key must be configured in the node credentials before execution.
Troubleshooting
Common issues:
- Invalid or missing Project ID: Ensure the Project ID provided exists and is correct.
- Authentication errors: Verify that the API key and Redmine URL are correctly set and have sufficient permissions.
- Network connectivity problems: Confirm that the Redmine server is reachable from the n8n environment.
Error messages:
"Project not found"
: The specified Project ID does not exist; verify the ID."Unauthorized"
or"Authentication failed"
: Check API key validity and permissions.- Other HTTP errors may indicate server issues or incorrect URL configuration.
To resolve errors, double-check input parameters, credentials, and network access.