GitLab API icon

GitLab API

Gitlab

Actions917

Overview

This node operation updates the Datadog integration settings for a specific GitLab group by sending a PUT request to the GitLab API endpoint `/api/v4/groups/{id}/integrations/datadog`. It is useful for automating the configuration of Datadog monitoring within GitLab groups, enabling seamless integration management directly from an n8n workflow.

Use Case Examples

  1. Automatically update Datadog integration settings for a GitLab group when certain conditions are met in your workflow.
  2. Manage multiple GitLab groups' Datadog integrations programmatically without manual intervention.

Properties

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

Output

JSON

  • response - The JSON response from the GitLab API after updating the Datadog 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 your GitLab instance.
  • Verify that the API key used has sufficient permissions to update group integrations.
  • Check the request body schema matches the expected structure for the Datadog integration update to avoid validation errors.

Links

Discussion