GitLab API

GitlabTool

Actions1000

Overview

This node operation retrieves a specific resource milestone event from a GitLab project issue. It is useful for users who want to fetch detailed information about a particular milestone event associated with an issue in a GitLab project. For example, it can be used to track progress or changes related to project milestones within issue discussions.

Use Case Examples

  1. Fetch milestone event details for a specific issue in a GitLab project to monitor project progress.
  2. Retrieve milestone event information to integrate with project management dashboards.

Properties

Name Meaning
Skip Authentication Option to skip authentication for the request.
Authentication Type of authentication used, defaulting to GitLab API key.
baseUrl Base URL of the GitLab instance, default is https://gitlab.com.
Method HTTP method to use for the request, default is GET.
Path Parameters Parameters required in the API path to identify the project, issue, and milestone event.

Output

JSON

  • id - The unique identifier of the milestone event.
  • title - The title of the milestone event.
  • description - Description of the milestone event.
  • created_at - Timestamp when the milestone event was created.
  • updated_at - Timestamp when the milestone event was last updated.
  • state - Current state of the milestone event.

Dependencies

  • GitLab API key credential

Troubleshooting

  • Ensure the project ID, eventable ID, and event ID are correctly provided; incorrect IDs will result in errors or no data returned.
  • Authentication errors may occur if the GitLab API key is missing or invalid; verify the API key and permissions.
  • Network issues or incorrect base URL can cause request failures; confirm the base URL is correct and accessible.

Discussion