GitLab API

GitlabTool

Actions1000

Overview

This node interacts with the GitLab API to retrieve the avatar image of a specific group by its ID. It is useful in scenarios where you need to programmatically access or display the avatar of 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. Automating the retrieval of group avatars for use in a custom GitLab reporting tool.

Properties

Name Meaning
Skip Authentication Determines whether to skip the authentication process for the API request.
Authentication Specifies the authentication method to use, typically an API key credential for GitLab.
baseUrl The base URL of the GitLab instance to which the API request is sent.
Method The HTTP method used for the API request, defaulting to GET for this operation.
Path Parameters The path parameters required for the API request, specifically the group ID to identify which group's avatar to retrieve.

Output

JSON

  • avatar_url - URL of the group's avatar image

Dependencies

  • GitLab API key credential

Troubleshooting

  • Ensure the group ID provided in the path parameters is valid and exists in the GitLab instance.
  • If authentication is enabled, verify that the API key credential is correctly configured 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.

Links

Discussion