GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation updates the External Wiki integration settings for a specific project in GitLab using the PUT method on the endpoint `/api/v4/projects/{id}/integrations/external-wiki`. It is useful for automating the configuration of external wiki integrations in GitLab projects, such as setting or modifying the external wiki URL or related parameters.

Use Case Examples

  1. Automatically update the external wiki integration for a project when project details change.
  2. Configure external wiki settings for multiple projects in bulk via automation workflows.

Properties

Name Meaning
Skip Authentication Determines whether to skip authentication for the API 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 The HTTP method used for the request, defaulting to PUT for this operation.
Path Parameters Parameters included in the request path, specifically the project ID to identify which project's external wiki integration to update.

Output

JSON

  • response - The JSON response from the GitLab API after updating the external wiki integration, typically including the updated integration details.

Dependencies

  • GitLab API key credential

Troubleshooting

  • Ensure the project ID provided in the path parameters is valid and the project exists in GitLab.
  • Verify that the API key used for authentication has sufficient permissions to update project integrations.
  • Check the base URL to confirm it points to the correct GitLab instance, especially if using a self-hosted GitLab server.
  • If skipping authentication, ensure the endpoint allows unauthenticated requests, otherwise the request will fail with an authentication error.

Links

Discussion