Skip to content

Retrieve a project milestone

GET
/api/v4/projects/{id}/milestones/{milestone_id}

Retrieves a specified project milestone.

id
required
One of:
string

The ID or URL-encoded path of the project

milestone_id
required
integer

The ID of a project milestone

OK

Media type application/json
object
id
integer format: int64
iid
integer format: int64
project_id
integer format: int64
group_id
string
title
string
description
string
state
string
created_at
string
updated_at
string
due_date
string
start_date
string
expired
boolean
web_url
string
Example generated
{
"id": 1,
"iid": 1,
"project_id": 1,
"group_id": "example",
"title": "example",
"description": "example",
"state": "example",
"created_at": "example",
"updated_at": "example",
"due_date": "example",
"start_date": "example",
"expired": true,
"web_url": "example"
}

Bad Request

Not Found