GitLab API

GitlabTool

Actions1000

Overview

This node operation performs a PUT request to update the Phorge integration settings for a specific GitLab group identified by its ID. It is useful for automating the management of group integrations within GitLab, such as enabling or configuring Phorge integration programmatically.

Use Case Examples

  1. Updating Phorge integration settings for a GitLab group by specifying the group ID and providing the necessary integration configuration in the request body.
  2. Automating the synchronization of integration settings across multiple GitLab groups using this node operation.

Properties

Name Meaning
Skip Authentication Determines whether to skip 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 The HTTP method to use for the request, defaulting to PUT for this operation.
Path Parameters The path parameters required for the request, specifically the group ID ('id') to identify the target group for the integration update.

Output

JSON

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

Dependencies

  • GitLab API authentication credential

Troubleshooting

  • Ensure the group ID ('id') path parameter is correctly provided and corresponds to an existing GitLab group.
  • Verify that the authentication credentials are valid and have sufficient permissions to update group integrations.
  • Check the request body schema to ensure it matches the expected structure for the Phorge integration update.
  • If skipping authentication, confirm that the GitLab instance allows unauthenticated requests for this operation.

Links

Discussion