GitLab API

GitlabTool

Actions1000

Overview

This node interacts with the GitLab API to retrieve integration details for a specific project by its ID. It is useful for scenarios where you need to programmatically access or manage project integrations within GitLab, such as fetching integration configurations or statuses for automation or reporting purposes.

Use Case Examples

  1. Fetch integration details of a GitLab project by providing the project ID.
  2. Use the node to automate monitoring or updating project integrations in GitLab workflows.

Properties

Name Meaning
Skip Authentication Determines whether to skip the authentication process for the API request.
Authentication Specifies the authentication method to use, defaulting to GitLab API key authentication.
baseUrl The base URL of the GitLab instance to which the API requests are sent, defaulting to https://gitlab.com.
Method The HTTP method used for the API request, defaulting to GET.
Path Parameters The path parameters for the API request, specifically the project ID to identify which project's integrations to retrieve.

Output

JSON

  • id - The unique identifier of the GitLab project whose integrations are retrieved.
  • integrations - The list or details of integrations associated with the specified GitLab project.

Dependencies

  • GitLab API key credential for authentication

Troubleshooting

  • Ensure the project ID is correctly provided and exists in the GitLab instance to avoid 'not found' errors.
  • Verify that the API key credential has sufficient permissions to access project integrations.
  • Check the base URL to ensure it points to the correct GitLab instance, especially if using a self-hosted GitLab server.

Links

Discussion