GitLab API

GitlabTool

Actions1000

Overview

This node operation updates the Jira Cloud App integration settings for a specific GitLab group by sending a PUT request to the GitLab API endpoint `/api/v4/groups/{id}/integrations/jira-cloud-app`. It is useful for automating the configuration of Jira Cloud integrations within GitLab groups, enabling seamless issue tracking and project management synchronization between GitLab and Jira Cloud.

Use Case Examples

  1. Updating Jira Cloud App integration settings for a GitLab group with ID 12345 to enable or modify integration parameters.
  2. Automating the management of Jira Cloud App integration across multiple GitLab groups in a CI/CD pipeline.

Properties

Name Meaning
Skip Authentication Determines whether to skip authentication for the API 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 The HTTP method used for the API request, defaulting to PUT for this operation.
Path Parameters The path parameters for the API request, specifically the group ID to identify which group's Jira Cloud App integration to update.

Output

JSON

  • statusCode - HTTP status code returned by the API indicating the result of the update operation.
  • responseBody - The JSON response body containing details of the updated Jira Cloud App integration settings.

Dependencies

  • GitLab API authentication credential

Troubleshooting

  • Ensure the group ID provided in the path parameters is valid and the user has permission to update integrations for that group.
  • Verify that the GitLab API authentication credential is correctly configured and has sufficient scope to perform integration updates.
  • Check the request body schema matches the expected structure for the Jira Cloud App integration update to avoid validation errors.

Links

Discussion