2017-05-18 04:49:03 -04:00
|
|
|
# Milestones API
|
2014-05-27 08:12:15 -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
|
|
|
|
|
|
|
```
|
|
|
|
GET /projects/:id/milestones
|
2017-02-09 09:28:19 -05:00
|
|
|
GET /projects/:id/milestones?iids=42
|
|
|
|
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
|
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:
|
|
|
|
|
|
|
|
| Attribute | Type | Required | Description |
|
|
|
|
| --------- | ---- | -------- | ----------- |
|
2017-04-08 04:54:00 -04:00
|
|
|
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) owned by the authenticated user |
|
2017-02-09 09:28:19 -05:00
|
|
|
| `iids` | Array[integer] | optional | Return only the milestones having the given `iids` |
|
2017-02-28 07:23:40 -05:00
|
|
|
| `state` | string | optional | Return only `active` or `closed` milestones` |
|
|
|
|
| `search` | string | optional | Return only milestones with a title or description matching the provided string |
|
2016-04-06 14:53:17 -04:00
|
|
|
|
|
|
|
```bash
|
2017-03-01 12:39:40 -05:00
|
|
|
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" 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",
|
|
|
|
"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
|
|
|
|
|
|
|
```
|
|
|
|
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
|
|
|
|
|
|
|
```
|
|
|
|
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
|
2014-04-24 18:48:22 -04:00
|
|
|
- `title` (required) - The title of an milestone
|
|
|
|
- `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
|
|
|
|
|
|
|
```
|
|
|
|
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
|
2014-04-24 18:48:22 -04:00
|
|
|
- `state_event` (optional) - The state event of the milestone (close|activate)
|
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.
|
|
|
|
|
|
|
|
```
|
|
|
|
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.
|
|
|
|
|
|
|
|
```
|
|
|
|
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
|