GitLab API

GitlabTool

Actions1000

Overview

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

Use Case Examples

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

Properties

Name Meaning
Skip Authentication Option to skip authentication for the API request.
Authentication Type of authentication used for the API request, defaulting to GitLab API key.
baseUrl Base URL of the GitLab instance, default is https://gitlab.com.
Method HTTP method to use for the request, default is GET but PUT is used 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 Webex Teams service integration.

Dependencies

  • GitLab API key credential for authentication

Troubleshooting

  • Ensure the project ID provided in path parameters is valid and exists in GitLab.
  • Verify that the API key used has sufficient permissions to update project service integrations.
  • Check that the base URL is correct and accessible.
  • Common error messages include 401 Unauthorized (invalid or missing API key), 404 Not Found (invalid project ID), and 400 Bad Request (invalid request body).

Links

Discussion