GitLab API icon

GitLab API

Gitlab

Actions880

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 the Phorge integration programmatically.

Use Case Examples

  1. Updating the Phorge integration settings for a GitLab group by specifying the group ID and providing the necessary configuration in the request body.
  2. Automating integration updates for multiple GitLab groups in a CI/CD pipeline.

Properties

Name Meaning
Skip Authentication Determines whether to skip authentication for the API 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 for the request, specifically the group ID to identify which group's Phorge integration to 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 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 request body schema to ensure it matches the expected structure for the Phorge integration update.
  • If skipping authentication, ensure the GitLab instance allows unauthenticated requests for this operation.

Discussion