Update a group milestone
PUT
/api/v4/groups/{id}/milestones/{milestone_id}
Updates the specified group milestone.
Authorizations
Section titled “ Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “ Path Parameters ” id
required
string
The ID of a group
milestone_id
required
integer
The milestone ID number
Request Body
Section titled “ Request Body ” Media type application/json
object
title
The title of the milestone
string
state_event
The state event of the milestone
string
description
The description of the milestone
string
due_date
The due date of the milestone. The ISO 8601 date format (%Y-%m-%d)
string
start_date
The start date of the milestone. The ISO 8601 date format (%Y-%m-%d)
string
Responses
Section titled “ Responses ”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