GitLab API icon

GitLab API

Gitlab

Actions880

Overview

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

Use Case Examples

  1. Automatically update ClickUp integration settings for a GitLab group when a new project is created.
  2. Synchronize ClickUp integration configurations across multiple GitLab groups via workflow automation.

Properties

Name Meaning
Skip Authentication Determines whether to skip authentication for the API request.
Authentication Specifies the authentication method to use, hidden unless Skip Authentication is false.
baseUrl The base URL for the GitLab instance, defaulting to https://gitlab.com.
Method HTTP method to use for the request, default is GET but PUT is used for this operation.
Path Parameters Parameters to be included in the request path, specifically the group ID for this operation.

Output

JSON

  • statusCode - HTTP response status code from the API call.
  • body - The response body containing the updated ClickUp integration details for the specified GitLab group.

Dependencies

  • GitLab API authentication credential

Troubleshooting

  • Ensure the group ID path parameter is correctly provided and is a valid integer to avoid 400 or 404 errors.
  • Verify that the API authentication credentials are correctly configured and have sufficient permissions to update group integrations.
  • Check the base URL if using a self-hosted GitLab instance to ensure it is reachable and correct.
  • Common error messages include authentication failures, invalid group ID, or insufficient permissions. Resolving these typically involves correcting credentials, verifying group existence, and ensuring API access rights.

Links

Discussion