GitLab API icon

GitLab API

Gitlab

Actions880

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 notifications or integration features within GitLab groups.

Use Case Examples

  1. Automatically update Microsoft Teams integration settings for a GitLab group when group configurations change.
  2. Enable or modify Microsoft Teams notifications for a specific GitLab group as part of a CI/CD pipeline.

Properties

Name Meaning
Skip Authentication Determines whether to skip API authentication for the 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 request is sent.
Method HTTP method to use for the request; default is GET but PUT is used for this operation.
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 Microsoft Teams integration for the specified group.

Dependencies

  • GitLab API authentication credential

Troubleshooting

  • Ensure the group ID provided in the path parameters is valid and exists in the GitLab instance.
  • Verify that the authentication credentials are correct and have sufficient permissions to update group integrations.
  • Check that the request body schema matches the expected structure for the Microsoft Teams integration update to avoid validation errors.

Links

Discussion