Skip to content

Create a group milestone

POST
/api/v4/groups/{id}/milestones

Creates a milestone for the specified group.

id
required
string

The ID of a group

Media type application/json
object
title
required

The title of the milestone

string
nullable
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
Example generated
{
"title": "example",
"description": "example",
"due_date": "example",
"start_date": "example"
}

Created

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