GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation updates the Jira integration settings for a specific GitLab group by sending a PUT request to the GitLab API endpoint `/api/v4/groups/{id}/integrations/jira`. It is useful for automating the configuration of Jira integrations within GitLab groups, such as enabling or modifying Jira issue tracking integration for project management workflows.

Use Case Examples

  1. Updating Jira integration settings for a GitLab group with ID 123 to enable issue tracking and set project keys.
  2. Automating the synchronization of Jira integration configurations across multiple GitLab groups.

Properties

Name Meaning
Skip Authentication Determines whether to skip API authentication for the request.
Authentication Specifies the authentication method to use for the API request (hidden unless Skip Authentication is false).
baseUrl The base URL of the GitLab instance to which the API request is sent.
Method HTTP method used for the API request, default is PUT for this operation.
Path Parameters Parameters included in the request path, specifically the group ID to identify which group's Jira integration to update.

Output

JSON

  • response - The JSON response from the GitLab API after updating the Jira integration settings, containing the updated integration details.

Dependencies

  • GitLab API key credential for authentication

Troubleshooting

  • Ensure the group ID provided in the path parameters is valid and exists in the GitLab instance.
  • Verify that the API key used for authentication has sufficient permissions to update group integrations.
  • Check the base URL to confirm it points to the correct GitLab instance.
  • If skipping authentication, ensure the API endpoint allows unauthenticated requests, otherwise the request will fail.

Links

Discussion