GitLab API icon

GitLab API

Gitlab

Actions917

Overview

This node operation updates the Redmine integration settings for a specific GitLab group by sending a PUT request to the GitLab API endpoint `/api/v4/groups/{id}/integrations/redmine`. It is useful for automating the configuration of Redmine integration within GitLab groups, such as enabling or modifying Redmine project tracking features directly from an n8n workflow.

Use Case Examples

  1. Updating Redmine integration settings for a GitLab group to enable issue tracking or change project URLs.
  2. Automating the synchronization of Redmine integration configurations across multiple GitLab groups.

Properties

Name Meaning
Skip Authentication Determines whether to skip authentication for the API request.
Authentication Specifies the authentication method to use, defaulting to GitLab API key authentication.
baseUrl The base URL of the GitLab instance, defaulting to https://gitlab.com.
Method The HTTP method to use for the request, defaulting to PUT for this operation.
Path Parameters The path parameter 'id' specifies the GitLab group ID for which the Redmine integration is being updated.

Output

JSON

  • response - The JSON response from the GitLab API after updating the Redmine integration settings.

Dependencies

  • Requires GitLab API key credential for authentication unless skipping authentication is enabled.

Troubleshooting

  • Ensure the 'id' path parameter is correctly set to a valid GitLab group ID; otherwise, the API request will fail.
  • Verify that the GitLab API key credential has sufficient permissions to update group integrations.
  • If skipping authentication, the request may be rejected by the GitLab server due to lack of authorization.
  • Check the baseUrl property if using a self-hosted GitLab instance to ensure the correct API endpoint is targeted.

Links

Discussion