GitLab API icon

GitLab API

Gitlab

Actions880

Overview

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

Use Case Examples

  1. Automatically update the Irker service settings for a project when a new project is created.
  2. Modify the Irker integration parameters as part of a CI/CD pipeline setup.

Properties

Name Meaning
Skip Authentication Option to skip API authentication for the 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

  • id - The ID of the GitLab project for which the Irker service is being updated.
  • serviceStatus - Status or response details from the GitLab API after updating the Irker 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 the base URL to confirm it points to the correct GitLab instance.
  • If skipping authentication, ensure the endpoint allows unauthenticated requests, otherwise the request will fail.

Links

Discussion