GitLab API icon

GitLab API

Gitlab

Actions880

Overview

This node operation retrieves the avatar image of a specific group from the GitLab API (version 4). It is useful for scenarios where you need to fetch and display or process the avatar associated with a GitLab group, such as in dashboards, reports, or integrations that require group branding visuals.

Use Case Examples

  1. Fetching the avatar of a GitLab group to display on a team management dashboard.
  2. Retrieving group avatars to include in automated reports or notifications.

Properties

Name Meaning
Skip Authentication Option to skip authentication for the request, useful for public or unauthenticated access scenarios.
Authentication Specifies the authentication method to use, defaulting to GitLab API key authentication.
baseUrl The base URL of the GitLab instance to which the API request is sent, defaulting to https://gitlab.com.
Method HTTP method to use for the request, default is GET to retrieve the avatar image.
Path Parameters Parameters to be included in the request path, specifically the group ID to identify which group's avatar to retrieve.

Output

JSON

  • avatar - The avatar image data or URL retrieved from the GitLab group.

Dependencies

  • GitLab API key credential for authenticated requests

Troubleshooting

  • Ensure the group ID provided in the path parameters is correct and exists in the GitLab instance.
  • If authentication is enabled, verify that the GitLab API key credential is valid and has sufficient permissions to access group information.
  • Check the baseUrl to ensure it points to the correct GitLab instance, especially if using a self-hosted GitLab server.
  • Common error messages may include 404 Not Found if the group ID does not exist, or 401 Unauthorized if authentication fails.

Links

Discussion