GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation updates the Jira Cloud App integration 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 managing and configuring Jira Cloud integrations within GitLab groups, allowing automation of integration updates.

Use Case Examples

  1. Updating Jira Cloud App integration settings for a GitLab group to synchronize issue tracking and project management.
  2. Automating the configuration 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, defaulting to GitLab API key authentication.
baseUrl The base URL for the GitLab instance, defaulting to https://gitlab.com.
Method HTTP method to use for the request, default is GET but for this operation it is PUT.
Path Parameters Parameters to be included in the request path, specifically the group ID for this operation.

Output

JSON

  • response - The JSON response from the GitLab API after updating the Jira Cloud App integration.

Dependencies

  • GitLab API key credential for authentication

Troubleshooting

  • Ensure the group ID provided in the path parameters is valid and exists in GitLab.
  • Verify that the API key used 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 endpoint allows unauthenticated access, otherwise the request will fail.

Links

Discussion