GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation updates the Hangouts Chat integration settings for a specific GitLab group by sending a PUT request to the GitLab API endpoint `/api/v4/groups/{id}/integrations/hangouts-chat`. It is useful for automating the configuration of Hangouts Chat notifications within GitLab groups, enabling streamlined communication and alerting workflows.

Use Case Examples

  1. Updating Hangouts Chat integration settings for a GitLab group to customize notifications.
  2. Automating the management of group integrations in GitLab via API calls.

Properties

Name Meaning
Skip Authentication Determines whether to skip API authentication for the request.
Authentication Specifies the authentication method to use, defaulting to GitLab API key authentication.
baseUrl The base URL of the GitLab instance to which the API request is sent.
Method HTTP method used for the API request, default is PUT for this operation.
Path Parameters Parameters included in the API request path, specifically the group ID to identify which group's Hangouts Chat integration to update.

Output

JSON

  • id - The ID of the GitLab group whose Hangouts Chat integration was updated.
  • integration_status - Status of the Hangouts Chat integration after the update.
  • webhook_url - The webhook URL configured for the Hangouts Chat integration.
  • updated_at - Timestamp indicating when the integration was last updated.

Dependencies

  • GitLab API key credential for authentication

Troubleshooting

  • Ensure the group ID provided in the path parameters is valid and exists in GitLab to avoid 404 errors.
  • Verify that the API key used for authentication has sufficient permissions to update group integrations.
  • Check the request body schema matches the expected format for the Hangouts Chat integration update to prevent validation errors.

Links

Discussion