Skip to main content

The Milestone object

The Milestone API provides a powerful way to manage key project milestones within your application. This API allows you to create, update, retrieve, and track milestones, enabling you to monitor project progress and deadlines effectively. Each milestone includes essential details such as its title, description, status, start date, due date, and timestamps for when it was created and last updated. By integrating this API, you can ensure that your project timelines are well-organized and easily accessible, helping your team stay on track and meet crucial deadlines.

Attributes

archived_at
nullable string
Time at which the milestone was archived.
closed_at
nullable string
Timestamp indicating when the milestone was closed, if applicable.
created_at
string
Timestamp for when the milestone was initially created.
description
string
A brief text providing details about the milestone.
due_date
nullable string
Timestamp specifying the deadline for the milestone, if set.
id
string
A unique string identifier for the milestone.
start_date
nullable string
Timestamp denoting when the milestone is set to begin, if available.
status
enum
The current state of the milestone. One of open, closed.
title
string
The name or heading of the milestone.
updated_at
string
Timestamp for the most recent update to the milestone.
visibility
enum
Visibility of the milestone. One of private, internal, shared.
The Milestone object
{
"archived_at": null,
"closed_at": null,
"created_at": "2024-08-20T09:34:32+00:00",
"description": "Aperiam earum saepe consequuntur aut.",
"due_date": "2024-08-27T00:00:00+00:00",
"id": "mst_9fbd4636814ff5d5ae7a23f0",
"start_date": "2024-08-20T00:00:00+00:00",
"status": "open",
"title": "Adipisci doloribus eos possimus reprehenderit.",
"updated_at": "2024-08-20T09:34:32+00:00",
"visibility": "internal"
}