GitLab API icon

GitLab API

Gitlab

Actions917

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 information about a resource milestone event to automate reporting or notifications in project management workflows.

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 resource milestone event.
  • project_id - The ID of the project to which the milestone event belongs.
  • issue_id - The ID of the issue associated with the milestone event.
  • milestone_id - The ID of the milestone linked to the event.
  • action - The action performed on the milestone event (e.g., added, removed).
  • created_at - Timestamp when the milestone event was created.
  • updated_at - Timestamp when the milestone event was last updated.

Dependencies

  • GitLab API key credential

Troubleshooting

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

Links

Discussion