GitLab API

GitlabTool

Actions1000

Overview

This node operation allows updating the Assembla service integration settings for a specific GitLab project by sending a PUT request to the GitLab API endpoint `/api/v4/projects/{id}/services/assembla`. It is useful for automating the configuration of Assembla integration within GitLab projects, such as enabling or modifying integration parameters programmatically.

Use Case Examples

  1. Automatically update Assembla integration settings for a project when a new project is created.
  2. Modify Assembla service parameters across multiple projects in bulk via workflow automation.

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, defaulting to GitLab API key authentication.
baseUrl The base URL of the GitLab instance to which the API request is sent.
Method The HTTP method used for the API request, defaulting to PUT for this operation.
Path Parameters Parameters included in the request path, specifically the project ID to identify which project's Assembla service to update.

Output

JSON

  • id - The ID of the GitLab project for which the Assembla service integration was updated.
  • service_status - The status of the Assembla service integration after the update.
  • updated_fields - Details of the fields that were updated in the Assembla service integration.

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 credential has sufficient permissions to update project service integrations.
  • Check the base URL to confirm it points to the correct GitLab instance.
  • If skipping authentication, ensure the API endpoint allows unauthenticated requests, otherwise the request will fail.

Discussion