GitLab API icon

GitLab API

Gitlab

Actions917

Overview

This node operation updates the External Wiki integration settings for a specific GitLab group by sending a PUT request to the GitLab API endpoint `/api/v4/groups/{id}/integrations/external-wiki`. It is useful for automating the configuration of external wiki integrations within GitLab groups, such as enabling or modifying wiki integration settings programmatically.

Use Case Examples

  1. Automatically update the external wiki integration for a GitLab group when group settings change.
  2. Integrate GitLab group wiki settings management into a CI/CD pipeline or administrative workflow.

Properties

Name Meaning
Skip Authentication If set to true, the node will skip using authentication for the API request.
Authentication The authentication method used for the API request, defaulting to GitLab API key authentication.
baseUrl The base URL of the GitLab instance to which the API request is sent, defaulting to https://gitlab.com.
Method The HTTP method used for the API request, defaulting to PUT for this operation.
Path Parameters The path parameters for the API request, specifically the group ID (`id`) to identify which group's external wiki integration to update.

Output

JSON

  • response - The JSON response from the GitLab API after updating the external wiki integration for the specified group.

Dependencies

  • Requires GitLab API key authentication credentials unless skipping authentication is enabled.

Troubleshooting

  • Ensure the group ID (`id`) path parameter is correctly set and corresponds to an existing GitLab group.
  • Verify that the API key used has sufficient permissions to update group integrations.
  • If skipping authentication, the request may fail due to lack of authorization.
  • Check the base URL to ensure it points to the correct GitLab instance, especially if using a self-hosted GitLab server.

Links

Discussion