Skip to content

Update a group milestone

PUT
/api/v4/groups/{id}/milestones/{milestone_id}

Updates the specified group milestone.

id
required
string

The ID of a group

milestone_id
required
integer

The milestone ID number

Media type application/json
object
title

The title of the milestone

string
nullable
state_event

The state event of the milestone

string
nullable
Allowed values: close activate
description

The description of the milestone

string
nullable
due_date

The due date of the milestone. The ISO 8601 date format (%Y-%m-%d)

string
nullable
start_date

The start date of the milestone. The ISO 8601 date format (%Y-%m-%d)

string
nullable

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