GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation allows updating the Assembla integration settings for a specific GitLab group by making a PUT request to the GitLab API endpoint `/api/v4/groups/{id}/integrations/assembla`. It is useful for automating the management of group integrations in GitLab, such as enabling or configuring Assembla integration for project collaboration.

Use Case Examples

  1. Updating Assembla integration settings for a GitLab group with ID 12345 by providing the necessary configuration in the request body.
  2. Automating integration updates across multiple GitLab groups in a CI/CD pipeline.

Properties

Name Meaning
Skip Authentication Option to skip authentication for the request, useful for public or unauthenticated endpoints.
Authentication Type of authentication to use for the request, defaulting to GitLab API key authentication.
baseUrl Base URL of the GitLab instance to which the request is sent, defaulting to https://gitlab.com.
Method HTTP method to use for the request, defaulting to PUT for this operation.
Path Parameters Parameters to be included in the request path, specifically the group ID for this operation.

Output

JSON

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

Dependencies

  • GitLab API key credential

Troubleshooting

  • Ensure the group ID provided in the path parameters is valid and the authenticated user has permission to update integrations for that group.
  • Verify that the request body schema matches the expected structure for the Assembla integration update to avoid validation errors.
  • Check network connectivity and the base URL to ensure the GitLab instance is reachable.
  • If skipping authentication, confirm that the endpoint supports unauthenticated requests, otherwise authentication errors will occur.

Links

Discussion