GitLab API icon

GitLab API

Gitlab

Actions917

Overview

This node interacts with the GitLab API, specifically supporting the operation to update the Assembla service settings for a project via a PUT request to the endpoint `/api/v4/projects/{id}/services/assembla`. It is useful for automating the configuration of project services in GitLab, such as enabling or modifying the Assembla integration for a given project ID.

Use Case Examples

  1. Automatically update Assembla service settings for a GitLab project as part of a CI/CD pipeline.
  2. Manage multiple GitLab projects' service configurations programmatically to ensure consistent integration settings.

Properties

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

Output

JSON

  • response - The JSON response from the GitLab API after updating the Assembla service settings for the specified project.

Dependencies

  • GitLab API key credential for authentication

Troubleshooting

  • Ensure the project ID provided in the path parameters is valid and accessible with the provided authentication.
  • Verify that the authentication credentials are correctly configured and have sufficient permissions to update project services.
  • Check the baseUrl if using a self-hosted GitLab instance to ensure it is correct.
  • If skipping authentication, confirm the endpoint supports unauthenticated requests, otherwise the request will fail.

Links

Discussion