2020-05-26 23:08:26 -04:00
---
stage: Plan
group: Project Management
2020-11-26 01:09:20 -05:00
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2020-05-26 23:08:26 -04:00
---
2021-06-23 11:07:50 -04:00
# Project milestones API **(FREE)**
2014-05-27 08:12:15 -04:00
2021-06-23 11:07:50 -04:00
Use project [milestones ](../user/project/milestones/index.md ) with the REST API.
2020-11-08 22:09:03 -05:00
There's a separate [group milestones API ](group_milestones.md ) page.
2020-05-29 11:08:14 -04:00
2012-08-29 08:31:00 -04:00
## List project milestones
2013-02-20 16:51:59 -05:00
Returns a list of project milestones.
2012-08-29 08:31:00 -04:00
2020-02-27 04:09:01 -05:00
```plaintext
2012-08-29 08:31:00 -04:00
GET /projects/:id/milestones
2017-08-03 02:35:41 -04:00
GET /projects/:id/milestones?iids[]=42
2017-02-09 09:28:19 -05:00
GET /projects/:id/milestones?iids[]=42& iids[]=43
2016-04-06 07:03:07 -04:00
GET /projects/:id/milestones?state=active
GET /projects/:id/milestones?state=closed
2019-03-27 05:01:07 -04:00
GET /projects/:id/milestones?title=1.0
2017-02-28 07:23:40 -05:00
GET /projects/:id/milestones?search=version
2012-08-29 08:31:00 -04:00
```
2016-04-06 14:53:17 -04:00
Parameters:
2020-08-19 08:10:17 -04:00
| Attribute | Type | Required | Description |
| ---------------------------- | ------ | -------- | ----------- |
2021-11-22 13:10:55 -05:00
| `id` | integer or string | yes | The ID or [URL-encoded path of the project ](index.md#namespaced-path-encoding ) owned by the authenticated user |
2020-08-19 08:10:17 -04:00
| `iids[]` | integer array | optional | Return only the milestones having the given `iid` (Note: ignored if `include_parent_milestones` is set as `true` ) |
| `state` | string | optional | Return only `active` or `closed` milestones |
| `title` | string | optional | Return only the milestones having the given `title` |
| `search` | string | optional | Return only milestones with a title or description matching the provided string |
2021-09-15 20:11:46 -04:00
| `include_parent_milestones` | boolean | optional | Include group milestones from parent group and its ancestors. [Introduced ](https://gitlab.com/gitlab-org/gitlab/-/issues/196066 ) in GitLab 13.4 |
2016-04-06 14:53:17 -04:00
2020-01-30 10:09:15 -05:00
```shell
2020-05-27 20:08:37 -04:00
curl --header "PRIVATE-TOKEN: < your_access_token > " "https://gitlab.example.com/api/v4/projects/5/milestones"
2016-04-06 14:53:17 -04:00
```
Example Response:
2013-10-02 06:08:07 -04:00
```json
[
{
2014-04-05 02:36:47 -04:00
"id": 12,
"iid": 3,
"project_id": 16,
"title": "10.0",
"description": "Version",
"due_date": "2013-11-29",
2016-11-15 12:48:30 -05:00
"start_date": "2013-11-10",
2014-04-05 02:36:47 -04:00
"state": "active",
"updated_at": "2013-10-02T09:24:18Z",
2020-08-21 11:10:03 -04:00
"created_at": "2013-10-02T09:24:18Z",
"expired": false
2013-10-02 06:08:07 -04:00
}
]
```
2013-02-20 16:51:59 -05:00
## Get single milestone
Gets a single project milestone.
2012-08-29 08:31:00 -04:00
2020-02-27 04:09:01 -05:00
```plaintext
2012-08-29 08:31:00 -04:00
GET /projects/:id/milestones/:milestone_id
```
Parameters:
2021-11-22 13:10:55 -05:00
| Attribute | Type | Required | Description |
|----------------|----------------|----------|-----------------------------------------------------------------------------------------------------------------|
| `id` | integer or string | yes | The ID or [URL-encoded path of the project ](index.md#namespaced-path-encoding ) owned by the authenticated user |
| `milestone_id` | integer | yes | The ID of the project's milestone |
2013-02-20 16:51:59 -05:00
## Create new milestone
2012-08-29 08:31:00 -04:00
2013-02-20 16:51:59 -05:00
Creates a new project milestone.
2012-08-29 08:31:00 -04:00
2020-02-27 04:09:01 -05:00
```plaintext
2012-08-29 08:31:00 -04:00
POST /projects/:id/milestones
```
Parameters:
2021-11-22 13:10:55 -05:00
| Attribute | Type | Required | Description |
|---------------|----------------|----------|-----------------------------------------------------------------------------------------------------------------|
| `id` | integer or string | yes | The ID or [URL-encoded path of the project ](index.md#namespaced-path-encoding ) owned by the authenticated user |
| `title` | string | yes | The title of a milestone |
| `description` | string | no | The description of the milestone |
| `due_date` | string | no | The due date of the milestone |
| `start_date` | string | no | The start date of the milestone |
2013-02-20 16:51:59 -05:00
2012-08-29 08:31:00 -04:00
## Edit milestone
2013-02-20 16:51:59 -05:00
Updates an existing project milestone.
2012-08-29 08:31:00 -04:00
2020-02-27 04:09:01 -05:00
```plaintext
2012-08-29 08:31:00 -04:00
PUT /projects/:id/milestones/:milestone_id
```
Parameters:
2021-11-22 13:10:55 -05:00
| Attribute | Type | Required | Description |
|----------------|----------------|----------|-----------------------------------------------------------------------------------------------------------------|
| `id` | integer or string | yes | The ID or [URL-encoded path of the project ](index.md#namespaced-path-encoding ) owned by the authenticated user |
| `milestone_id` | integer | yes | The ID of the project's milestone |
| `title` | string | no | The title of a milestone |
| `description` | string | no | The description of the milestone |
| `due_date` | string | no | The due date of the milestone |
| `start_date` | string | no | The start date of the milestone |
| `state_event` | string | no | The state event of the milestone (close or activate) |
2015-01-21 17:59:30 -05:00
2018-01-15 17:03:43 -05:00
## Delete project milestone
2021-07-08 14:09:32 -04:00
Only for users with the Developer role in the project.
2018-01-15 17:03:43 -05:00
2020-02-27 04:09:01 -05:00
```plaintext
2018-01-15 17:03:43 -05:00
DELETE /projects/:id/milestones/:milestone_id
```
Parameters:
2021-11-22 13:10:55 -05:00
| Attribute | Type | Required | Description |
|----------------|----------------|----------|-----------------------------------------------------------------------------------------------------------------|
| `id` | integer or string | yes | The ID or [URL-encoded path of the project ](index.md#namespaced-path-encoding ) owned by the authenticated user |
| `milestone_id` | integer | yes | The ID of the project's milestone |
2018-01-15 17:03:43 -05:00
2015-01-21 17:59:30 -05:00
## Get all issues assigned to a single milestone
Gets all issues assigned to a single project milestone.
2020-02-27 04:09:01 -05:00
```plaintext
2015-01-21 17:59:30 -05:00
GET /projects/:id/milestones/:milestone_id/issues
```
Parameters:
2021-11-22 13:10:55 -05:00
| Attribute | Type | Required | Description |
|----------------|----------------|----------|-----------------------------------------------------------------------------------------------------------------|
| `id` | integer or string | yes | The ID or [URL-encoded path of the project ](index.md#namespaced-path-encoding ) owned by the authenticated user |
| `milestone_id` | integer | yes | The ID of the project's milestone |
2017-02-16 04:08:18 -05:00
## Get all merge requests assigned to a single milestone
Gets all merge requests assigned to a single project milestone.
2020-02-27 04:09:01 -05:00
```plaintext
2017-02-16 04:08:18 -05:00
GET /projects/:id/milestones/:milestone_id/merge_requests
```
Parameters:
2021-11-22 13:10:55 -05:00
| Attribute | Type | Required | Description |
|----------------|----------------|----------|-----------------------------------------------------------------------------------------------------------------|
| `id` | integer or string | yes | The ID or [URL-encoded path of the project ](index.md#namespaced-path-encoding ) owned by the authenticated user |
| `milestone_id` | integer | yes | The ID of the project's milestone |
2019-02-26 18:18:40 -05:00
## Promote project milestone to a group milestone
2020-05-21 02:08:25 -04:00
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/issues/53861) in GitLab 11.9
2019-02-26 18:18:40 -05:00
2021-07-08 14:09:32 -04:00
Only for users with the Developer role in the group.
2019-02-26 18:18:40 -05:00
2020-02-27 04:09:01 -05:00
```plaintext
2019-02-26 18:18:40 -05:00
POST /projects/:id/milestones/:milestone_id/promote
```
Parameters:
2021-11-22 13:10:55 -05:00
| Attribute | Type | Required | Description |
|----------------|----------------|----------|-----------------------------------------------------------------------------------------------------------------|
| `id` | integer or string | yes | The ID or [URL-encoded path of the project ](index.md#namespaced-path-encoding ) owned by the authenticated user |
| `milestone_id` | integer | yes | The ID of the project's milestone |
2019-07-03 05:32:54 -04:00
2021-02-08 13:09:49 -05:00
## Get all burndown chart events for a single milestone **(PREMIUM)**
2019-07-03 05:32:54 -04:00
2021-02-08 13:09:49 -05:00
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/4737) in GitLab 12.1
> - Moved to GitLab Premium in 13.9.
2019-07-03 05:32:54 -04:00
Gets all burndown chart events for a single milestone.
2020-02-27 04:09:01 -05:00
```plaintext
2019-07-03 05:32:54 -04:00
GET /projects/:id/milestones/:milestone_id/burndown_events
```
Parameters:
2021-11-22 13:10:55 -05:00
| Attribute | Type | Required | Description |
|----------------|----------------|----------|-----------------------------------------------------------------------------------------------------------------|
| `id` | integer or string | yes | The ID or [URL-encoded path of the project ](index.md#namespaced-path-encoding ) owned by the authenticated user |
| `milestone_id` | integer | yes | The ID of the project's milestone |