GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation retrieves system hooks from the GitLab API (version 4). It is useful for scenarios where you need to monitor or manage system hooks programmatically, such as automating responses to system events or integrating GitLab system hooks with other services.

Use Case Examples

  1. Fetching a list of system hooks to display in a dashboard.
  2. Automating the monitoring of system hooks for audit or alerting purposes.

Properties

Name Meaning
Skip Authentication Determines whether to skip authentication 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 connect to, defaulting to https://gitlab.com.
Method HTTP method to use for the request, default is GET.
Query Parameters Optional query parameters to control pagination of the results.

Output

JSON

  • id - Unique identifier of the system hook.
  • url - URL of the system hook.
  • created_at - Timestamp when the system hook was created.

Dependencies

  • GitLab API key credential

Troubleshooting

  • Ensure the GitLab API key credential is correctly configured and has sufficient permissions to access system hooks.
  • Verify the baseUrl is correct and accessible from the n8n instance.
  • Check that the query parameters for pagination (page and per_page) are valid integers if provided.

Links

Discussion