Overview
This node integrates with Easy Redmine, a project management and issue tracking tool. Specifically, the "Issue" resource with the "Get One" operation allows users to retrieve detailed information about a single issue by specifying its unique ID. This is useful in scenarios where you want to fetch the current status, description, or other metadata of a particular issue for reporting, automation, or further processing within an n8n workflow.
Practical examples include:
- Automatically fetching issue details when triggered by an external event.
- Integrating issue data into custom dashboards or notifications.
- Using issue information as input for conditional logic or downstream nodes.
Properties
| Name | Meaning |
|---|---|
| ID | The unique numeric identifier of the issue to retrieve. |
Output
The node outputs JSON data representing the requested issue's details as returned by the Easy Redmine API. This typically includes fields such as issue ID, subject, description, status, priority, assigned user, creation and update timestamps, and any custom fields configured in Easy Redmine.
No binary data output is produced by this operation.
Dependencies
- Requires an Easy Redmine instance accessible via its API.
- Needs an API key credential for authentication, which must be configured in n8n credentials.
- The base URL of the Easy Redmine instance must be set in the node's credentials.
Troubleshooting
Common issues:
- Providing an invalid or non-existent issue ID will result in an error or empty response.
- Incorrect API key or domain configuration will cause authentication failures.
- Network connectivity problems can prevent successful API calls.
Error messages:
- Authentication errors usually indicate invalid or missing API credentials; verify and update them accordingly.
- "Not Found" errors suggest the specified issue ID does not exist; double-check the ID value.
- Timeout or connection errors may require checking network settings or Easy Redmine server availability.
Links and References
- Easy Redmine API Documentation
- n8n Expressions Documentation (for dynamic parameter usage)