GitLab API icon

GitLab API

Gitlab

Actions880

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, a project manager might use this to track milestone progress or event history related to an issue.

Use Case Examples

  1. Fetch milestone event details for issue #123 in project 'my-project' to monitor progress.
  2. Retrieve a specific milestone event by its event ID to audit changes or updates.

Properties

Name Meaning
Skip Authentication Option to skip authentication for the request.
Authentication Type of authentication used, default is 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 request path to identify the project, issue, eventable, and event ID.

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.
  • due_date - Due date associated with the milestone event.

Dependencies

  • GitLab API key credential

Troubleshooting

  • Ensure the project ID, eventable ID, and event ID are correctly provided and exist in the GitLab project to avoid 404 errors.
  • Check that the GitLab API key credential is valid and has sufficient permissions to access project issues and milestone events.
  • If skipping authentication, verify that the GitLab instance allows unauthenticated access to the requested resource, otherwise authentication errors will occur.

Links

Discussion