GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation performs a PUT request to update the Assembla service integration settings for a specific GitLab project. It is useful for automating the configuration of Assembla integration within GitLab projects, such as enabling or modifying service parameters programmatically.

Use Case Examples

  1. Updating Assembla integration settings for a project with ID 12345 to enable or change specific service options.
  2. Automating the management of project service integrations in GitLab via API calls.

Properties

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

Output

JSON

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

Dependencies

  • GitLab API key credential

Troubleshooting

  • Ensure the project ID provided in the path parameters is valid and exists in the GitLab instance.
  • Verify that the API key used for authentication has sufficient permissions to update project service integrations.
  • Check the baseUrl is correctly set to the GitLab instance URL if using a self-hosted GitLab server.
  • Common error messages may include 401 Unauthorized if authentication fails, 404 Not Found if the project ID does not exist, or 400 Bad Request if the request body schema is invalid.

Links

Discussion