GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation retrieves failure details for a specific entity within a GitLab bulk import process. It is useful for monitoring and troubleshooting migration issues by fetching error information related to a particular import entity. For example, it can be used to check which entities failed during a bulk import to GitLab and understand the reasons for those failures.

Use Case Examples

  1. Fetch failure details for a specific entity in a GitLab bulk import to diagnose migration problems.
  2. Monitor the status of entities in a bulk import by retrieving failure information.

Properties

Name Meaning
Skip Authentication Option to skip authentication for the request.
Authentication Type of authentication used for the 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.
Path Parameters Parameters for the API path, including import_id and entity_id to specify the bulk import and entity to fetch failures for.

Output

JSON

  • failures - List of failure details for the specified bulk import entity.

Dependencies

  • GitLab API key credential

Troubleshooting

  • Ensure the import_id and entity_id path parameters are correctly set and correspond to existing bulk import and entity IDs in GitLab.
  • Verify that the GitLab API key credential has sufficient permissions to access bulk import failure details.
  • If authentication is skipped, ensure the API endpoint is accessible without authentication, otherwise requests will fail.
  • Common error messages include 404 Not Found if the import or entity ID does not exist, and 401 Unauthorized if authentication fails.

Links

Discussion