GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation retrieves the uploads associated with a specific GitLab group by making a GET request to the GitLab API endpoint `/api/v4/groups/{id}/uploads`. It is useful for scenarios where users need to list or manage files uploaded to a particular group in GitLab, such as fetching all uploaded assets for review or processing.

Use Case Examples

  1. Fetch all uploads for a GitLab group with a given group ID.
  2. Paginate through uploads by specifying page number and items per page to handle large sets of uploaded files.

Properties

Name Meaning
Skip Authentication Option to skip authentication for the request, useful for public or unauthenticated access.
baseUrl The base URL of the GitLab instance, 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 results.
Path Parameters Path parameters required for the API call.

Output

JSON

  • uploads - Array of upload objects associated with the specified GitLab group.

Dependencies

  • GitLab API authentication token or credentials

Troubleshooting

  • Ensure the group ID provided in the path parameters is valid and exists in the GitLab instance.
  • Check that the authentication token has sufficient permissions to access group uploads.
  • Verify the base URL is correct for the GitLab instance being accessed.
  • If pagination parameters are used, ensure they are valid integers to avoid API errors.

Links

Discussion