GitLab API

GitlabTool

Actions1000

Overview

This node operation updates the Webex Teams integration settings for a specific GitLab group by sending a PUT request to the GitLab API endpoint `/api/v4/groups/{id}/integrations/webex-teams`. It is useful for automating the configuration of Webex Teams integration within GitLab groups, such as enabling or modifying integration parameters programmatically.

Use Case Examples

  1. Automate updating Webex Teams integration settings for a GitLab group by specifying the group ID and desired integration parameters.
  2. Use in CI/CD pipelines to ensure consistent Webex Teams integration configuration across multiple GitLab groups.

Properties

Name Meaning
Skip Authentication Determines whether to skip API authentication for the request.
Authentication Specifies the authentication method to use if authentication is not skipped.
baseUrl The base URL of the GitLab instance to which the request is sent.
Method HTTP method to use for the request; for this operation, it is PUT.
Path Parameters Parameters to be included in the request path, specifically the group ID to identify which group's Webex Teams integration to update.

Output

JSON

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

Dependencies

  • GitLab API authentication credential

Troubleshooting

  • Ensure the group ID provided in the path parameters is valid and exists in the GitLab instance.
  • Verify that the authentication credentials are correct and have sufficient permissions to update group 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.

Links

Discussion