GitLab API

GitlabTool

Actions1000

Overview

This node operation performs a PUT request to update the matrix integrations of a specific project in GitLab via the API endpoint `/api/v4/projects/{id}/integrations/matrix`. It is useful for automating the configuration or updating of project integrations in GitLab, especially in CI/CD or project management workflows.

Use Case Examples

  1. Updating the integration settings of a GitLab project by specifying the project ID and providing the integration matrix data in the request body.
  2. Automating project integration updates as part of a deployment pipeline.

Properties

Name Meaning
Skip Authentication Determines whether to skip authentication for the API request.
Authentication Specifies the authentication method to use, hidden unless Skip Authentication is false.
baseUrl The base URL of the GitLab instance to which the request is sent.
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 project integrations matrix.

Dependencies

  • GitLab API authentication credentials

Troubleshooting

  • Ensure the project ID provided in path parameters is valid and exists in GitLab.
  • Verify that the authentication credentials are correctly configured and have sufficient permissions to update project integrations.
  • Check that the request body schema matches the expected structure for the integrations matrix update to avoid validation errors.

Links

Discussion