GitLab API icon

GitLab API

Gitlab

Actions917

Overview

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

Use Case Examples

  1. Updating Zentao integration settings for a GitLab group by specifying the group ID and providing the integration configuration in the request body.
  2. Automating the management of group integrations in GitLab to ensure consistent integration settings across multiple groups.

Properties

Name Meaning
Skip Authentication Determines whether to skip authentication for the API request.
Authentication Specifies the authentication method to use for the API request (hidden, defaults to GitlabApi).
baseUrl The base URL of the GitLab instance to which the API request is sent.
Method The HTTP method used for the API request (default is GET, but PUT is used for this operation).
Path Parameters The path parameters for the API request, specifically the group ID (`id`) to identify which group's Zentao integration to update.

Output

JSON

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

Dependencies

  • GitLab API authentication credential

Troubleshooting

  • Ensure the group ID (`id`) path parameter is correctly provided and corresponds to an existing GitLab group.
  • Verify that the authentication credentials for GitLab API are valid and have sufficient permissions to update group integrations.
  • Check the request body schema to ensure it matches the expected structure for the Zentao integration update.
  • Common error messages may include 401 Unauthorized (invalid or missing authentication), 404 Not Found (group ID does not exist), or 400 Bad Request (invalid request body).

Links

Discussion