gitlabhq/doc/api/milestones.md

85 lines
1.8 KiB
Markdown
Raw Normal View History

2012-08-29 14:31:00 +02:00
## List project milestones
Returns a list of project milestones.
2012-08-29 14:31:00 +02:00
```
GET /projects/:id/milestones
```
Parameters:
+ `id` (required) - The ID of a project
2012-08-29 14:31:00 +02:00
Return values:
2012-08-29 14:31:00 +02:00
+ `200 Ok` on success and the list of project milestones
+ `401 Unauthorized` if user is not authenticated
+ `404 Not Found` if project ID not found
## Get single milestone
Gets a single project milestone.
2012-08-29 14:31:00 +02:00
```
GET /projects/:id/milestones/:milestone_id
```
Parameters:
+ `id` (required) - The ID of a project
2012-08-29 14:31:00 +02:00
+ `milestone_id` (required) - The ID of a project milestone
Return values:
+ `200 Ok` on success and the single milestone
+ `401 Unauthorized` if user is not authenticated
+ `404 Not Found` if project ID not found
## Create new milestone
2012-08-29 14:31:00 +02:00
Creates a new project milestone.
2012-08-29 14:31:00 +02:00
```
POST /projects/:id/milestones
```
Parameters:
+ `id` (required) - The ID of a project
2012-08-29 14:31:00 +02:00
+ `title` (required) - The title of an milestone
+ `description` (optional) - The description of the milestone
+ `due_date` (optional) - The due date of the milestone
Return values:
+ `201 Created` on success and the new milestone
+ `400 Bad Request` if the required attribute title is not given
+ `401 Unauthorized` if user is not authenticated
+ `404 Not Found` if project ID not found
2012-08-29 14:31:00 +02:00
## Edit milestone
Updates an existing project milestone.
2012-08-29 14:31:00 +02:00
```
PUT /projects/:id/milestones/:milestone_id
```
Parameters:
+ `id` (required) - The ID of a project
2012-08-29 14:31:00 +02: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
+ `closed` (optional) - The status of the milestone
Return values:
+ `200 Ok` on success and the updated milestone
+ `401 Unauthorized` if user is not authenticated
+ `404 Not Found` if project ID or milestone ID not found