GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation retrieves a specific upload from a GitLab group by its upload ID. It is useful for scenarios where you need to access or manage files uploaded to a particular group in GitLab, such as fetching metadata or content of the uploaded file.

Use Case Examples

  1. Fetching details of a file uploaded to a GitLab group for audit or processing purposes.
  2. Integrating GitLab group uploads into a workflow to automate file handling or reporting.

Properties

Name Meaning
Skip Authentication Determines whether to skip the authentication process for the request.
Authentication Specifies the authentication method to use, defaulting to GitLab API 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.
Path Parameters Parameters used in the request path to specify the group ID and upload ID.

Output

JSON

  • id - The unique identifier of the upload.
  • url - The URL to access the uploaded file.
  • alt - Alternative text or description of the upload.
  • created_at - Timestamp when the upload was created.

Dependencies

  • GitLab API authentication token

Troubleshooting

  • Ensure the provided group ID and upload ID are correct and exist in the GitLab instance.
  • Verify that the authentication token has sufficient permissions to access group uploads.
  • Check the base URL to confirm it points to the correct GitLab instance.

Links

Discussion