GitLab API icon

GitLab API

Gitlab

Actions917

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 integration parameters programmatically.

Use Case Examples

  1. Automatically update Jira integration settings for a GitLab group when project requirements change.
  2. Synchronize Jira integration configurations across multiple GitLab groups in an organization.

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 to which the API request is sent.
Method The HTTP method used for the API request, default is PUT for this operation.
Path Parameters Parameters included in the URL path, specifically the group ID to identify which group's Jira integration to update.

Output

JSON

  • id - The ID of the GitLab group whose Jira integration was updated.
  • integrationStatus - Status or result of the Jira integration update operation.
  • updatedFields - Details of the fields that were updated in the Jira integration settings.

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 has sufficient permissions to update group integrations.
  • Check the request body schema matches the expected structure for Jira integration settings to avoid validation errors.
  • Common error messages include 401 Unauthorized (authentication issues), 404 Not Found (invalid group ID), and 400 Bad Request (invalid request body). Resolving these involves verifying credentials, group existence, and request payload respectively.

Links

Discussion