GitLab API

GitlabTool

Actions1000

Overview

This node operation updates the Buildkite integration settings for a specific GitLab group by sending a PUT request to the GitLab API endpoint `/api/v4/groups/{id}/integrations/buildkite`. It is useful for automating the configuration of Buildkite CI/CD integrations within GitLab groups, enabling seamless integration management programmatically.

Use Case Examples

  1. Automatically update Buildkite integration settings for a GitLab group as part of a CI/CD pipeline setup.
  2. Manage Buildkite integration configurations across multiple GitLab groups in bulk via automation workflows.

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, defaulting to https://gitlab.com.
Method HTTP method to use for the request, default is GET but for this operation it is PUT.
Path Parameters Parameters to be included in the request path, specifically the group ID to identify which group's Buildkite integration to update.

Output

JSON

  • response - The JSON response from the GitLab API after updating the Buildkite integration.

Dependencies

  • GitLab API key credential

Troubleshooting

  • Ensure the group ID provided in the path parameters is valid and exists in the GitLab instance.
  • Verify that the API key used for authentication has sufficient permissions to update group integrations.
  • If skipping authentication, confirm that the GitLab instance allows unauthenticated requests for this endpoint, otherwise the request will fail.
  • Check the request body schema matches the expected structure for the Buildkite integration update to avoid validation errors.

Links

Discussion