GitLab API

GitlabTool

Actions905

Overview

This node operation updates the Webex Teams integration settings for a specific GitLab group by sending a PUT request to the GitLab API endpoint `/api/v4/groups/{id}/integrations/webex-teams`. It is useful for automating the configuration of Webex Teams integration within GitLab groups, such as enabling or modifying integration parameters programmatically.

Use Case Examples

  1. Automatically update Webex Teams integration settings for a GitLab group when group details change.
  2. Enable Webex Teams notifications for a GitLab group as part of a CI/CD pipeline setup.

Properties

Name Meaning
Skip Authentication If true, the node will skip using authentication for the API request.
Authentication The authentication method used for the API request, defaulting to GitLab API key authentication.
baseUrl The base URL for the GitLab instance, defaulting to https://gitlab.com.
Method The HTTP method used for the request, which is PUT for this operation.
Path Parameters The path parameters for the API request, specifically the group ID to identify which group's Webex Teams integration to update.

Output

JSON

  • response - The JSON response from the GitLab API after updating the Webex Teams integration for the specified group.

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 baseUrl is correctly set to the GitLab instance URL if using a self-hosted GitLab.
  • If skipping authentication, the request may fail due to lack of authorization.

Links

Discussion