GitLab API icon

GitLab API

Gitlab

Actions917

Overview

This node operation updates the Microsoft Teams integration settings for a specific GitLab group by sending a PUT request to the GitLab API endpoint `/api/v4/groups/{id}/integrations/microsoft-teams`. It is useful for automating the configuration of Microsoft Teams integration within GitLab groups, enabling notifications and collaboration features between GitLab and Microsoft Teams.

Use Case Examples

  1. Automatically update Microsoft Teams integration settings for a GitLab group when group configurations change.
  2. Enable or disable Microsoft Teams notifications for a specific GitLab group programmatically.

Properties

Name Meaning
Skip Authentication Option to skip authentication for the request, useful for public or unauthenticated API calls.
Authentication Type of authentication used for the API request, defaulting to GitLab API key authentication.
baseUrl Base URL of the GitLab instance to which the API request is sent, default is https://gitlab.com.
Method HTTP method used for the API request, fixed to PUT for this operation.
Path Parameters Parameters included in the API request path, specifically the group ID to identify which group's Microsoft Teams integration to update.

Output

JSON

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

Dependencies

  • GitLab API key credential for authentication

Troubleshooting

  • Ensure the group ID provided in the path parameters is valid and the authenticated user has permission to update the group's integrations.
  • Verify that the GitLab API base URL is correct and accessible.
  • Check that the request body schema matches the expected structure for Microsoft Teams integration settings to avoid validation errors.

Links

Discussion