GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation updates the Confluence integration settings for a specific project in GitLab. It is useful for automating the configuration of Confluence integration within GitLab projects, such as enabling or modifying the integration parameters programmatically.

Use Case Examples

  1. Automatically update Confluence integration settings for a project when project details change.
  2. Enable Confluence integration for multiple projects in bulk via workflow automation.

Properties

Name Meaning
Skip Authentication Option to skip authentication for the request.
Authentication Type of authentication used for the request, hidden unless Skip Authentication is false.
baseUrl Base URL of the GitLab instance, defaulting to https://gitlab.com.
Method HTTP method to use for the request, default is GET but PUT is relevant for this operation.
Path Parameters Parameters to be included in the request path, specifically the project ID for this operation.

Output

JSON

  • id - The ID of the project for which the Confluence integration is updated.
  • integrationStatus - Status or result of the Confluence integration update operation.

Dependencies

  • GitLab API authentication token or credentials

Troubleshooting

  • Ensure the project ID is correctly provided in the path parameters; missing or incorrect ID will cause request failure.
  • Verify that the authentication token is valid and has sufficient permissions to update project integrations.
  • Check that the base URL is correct and accessible, especially if using a self-hosted GitLab instance.
  • Common error messages include 401 Unauthorized (authentication issues), 404 Not Found (invalid project ID or integration endpoint), and 400 Bad Request (invalid request body). Resolving these involves correcting credentials, verifying project existence, and ensuring request body schema compliance.

Links

Discussion