GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation retrieves entities related to a specific bulk import in GitLab by using the import ID. It supports filtering entities by their status and paginating through the results. This is useful for monitoring and managing bulk import processes in GitLab, such as checking the progress or status of imported entities.

Use Case Examples

  1. A user wants to check the status of entities imported in a bulk import job by providing the import ID and optionally filtering by status (e.g., 'finished').
  2. A user needs to paginate through a large number of imported entities to process or analyze them in batches.

Properties

Name Meaning
Skip Authentication Option to skip authentication for the request.
Authentication The authentication method used for the request, defaulting to GitLab API key authentication.
baseUrl The base URL of the GitLab instance to which the request is sent.
Method The HTTP method used for the request, defaulting to GET.
Query Parameters Optional query parameters to filter and paginate the results, including status, page number, and items per page.
Path Parameters Path parameters required for the request, specifically the import_id which identifies the bulk import.

Output

JSON

  • entities - List of entities related to the specified bulk import.
  • status - Status of each entity if included in the response.
  • page - Current page number of the paginated response.
  • per_page - Number of items per page in the response.

Dependencies

  • GitLab API key credential for authentication

Troubleshooting

  • Ensure the import_id path parameter is correctly provided and valid; otherwise, the request will fail.
  • If authentication is skipped, the request may be unauthorized depending on the GitLab instance settings.
  • Check that the baseUrl is correctly set to the GitLab instance URL if using a self-hosted GitLab.
  • Pagination parameters (page and per_page) should be valid integers; invalid values may cause errors or unexpected results.

Links

Discussion