GitLab API icon

GitLab API

Gitlab

Actions917

Overview

This node operation updates the Assembla integration settings for a specific GitLab group by sending a PUT request to the GitLab API endpoint `/api/v4/groups/{id}/integrations/assembla`. It is useful for managing and configuring Assembla integration within GitLab groups programmatically, such as enabling or modifying integration parameters for project management and collaboration.

Use Case Examples

  1. Updating Assembla integration settings for a GitLab group with ID 123 to enable or change integration options.
  2. Automating the configuration of Assembla integration across multiple GitLab groups in a CI/CD pipeline.

Properties

Name Meaning
Skip Authentication Whether to skip authentication for the API request (boolean). Defaults to false.
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 request, which is PUT for this operation.
Path Parameters The path parameter 'id' specifying the GitLab group ID for which the Assembla integration is updated.

Output

JSON

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

Dependencies

  • GitLab API key credential for authentication

Troubleshooting

  • Ensure the 'id' path parameter is correctly set to a valid GitLab group ID; otherwise, the API will return an error.
  • Verify that the API key used for authentication has sufficient permissions to update group integrations.
  • If skipping authentication, the request may fail due to lack of authorization.
  • Check the request body schema matches the expected structure for the Assembla integration update to avoid validation errors.

Links

Discussion