2020-05-26 23:08:26 -04:00
---
stage: Plan
group: Project Management
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/#designated-technical-writers
---
2018-12-05 01:14:19 -05:00
# Project milestones API
2014-05-27 08:12:15 -04:00
2020-05-29 11:08:14 -04:00
This page describes the project milestones API.
There's a separate [group milestones API ](./group_milestones.md ) page.
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:
2019-07-04 18:46:12 -04:00
| Attribute | Type | Required | Description |
| --------- | ------ | -------- | ----------- |
| `id` | integer/string | yes | The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user |
| `iids[]` | integer array | optional | Return only the milestones having the given `iid` |
| `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 |
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-07-09 08:08:56 -04:00
"created_at": "2013-10-02T09:24:18Z"
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:
2017-04-08 04:54:00 -04:00
- `id` (required) - The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
2017-04-08 05:21:11 -04:00
- `milestone_id` (required) - 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:
2017-04-08 04:54:00 -04:00
- `id` (required) - The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
2018-01-19 05:09:59 -05:00
- `title` (required) - The title of a milestone
2014-04-24 18:48:22 -04:00
- `description` (optional) - The description of the milestone
- `due_date` (optional) - The due date of the milestone
2016-11-15 12:48:30 -05:00
- `start_date` (optional) - 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:
2017-04-08 04:54:00 -04:00
- `id` (required) - The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
2014-04-24 18:48:22 -04:00
- `milestone_id` (required) - The ID of a project milestone
- `title` (optional) - The title of a milestone
- `description` (optional) - The description of a milestone
- `due_date` (optional) - The due date of the milestone
2016-11-15 12:48:30 -05:00
- `start_date` (optional) - The start date of the milestone
2019-02-17 05:14:25 -05:00
- `state_event` (optional) - 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
2020-01-06 01:08:07 -05:00
Only for users with Developer access to 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:
- `id` (required) - The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
- `milestone_id` (required) - The ID of the project's milestone
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:
2017-04-08 04:54:00 -04:00
- `id` (required) - The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
2015-01-21 17:59:30 -05:00
- `milestone_id` (required) - The ID of a project 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:
2017-04-08 04:54:00 -04:00
- `id` (required) - The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
2017-02-28 07:23:40 -05:00
- `milestone_id` (required) - The ID of a project 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
2020-01-06 01:08:07 -05:00
Only for users with Developer access to 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:
- `id` (required) - The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
- `milestone_id` (required) - The ID of a project milestone
2019-07-03 05:32:54 -04:00
2019-07-08 04:50:38 -04:00
## Get all burndown chart events for a single milestone **(STARTER)**
2019-07-03 05:32:54 -04:00
2020-05-21 02:08:25 -04:00
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/4737) in GitLab 12.1
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:
- `id` (required) - The ID or [URL-encoded path of the project ](README.md#namespaced-path-encoding ) owned by the authenticated user
- `milestone_id` (required) - The ID of a project milestone