2012-08-29 14:31:00 +02:00
|
|
|
## List project milestones
|
|
|
|
|
2013-02-20 22:51:59 +01:00
|
|
|
Returns a list of project milestones.
|
2012-08-29 14:31:00 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
GET /projects/:id/milestones
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2012-12-21 18:47:04 +01:00
|
|
|
+ `id` (required) - The ID of a project
|
2012-08-29 14:31:00 +02:00
|
|
|
|
2013-02-20 22:51:59 +01:00
|
|
|
|
|
|
|
## Get single milestone
|
|
|
|
|
|
|
|
Gets a single project milestone.
|
2012-08-29 14:31:00 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
GET /projects/:id/milestones/:milestone_id
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2012-12-21 18:47:04 +01:00
|
|
|
+ `id` (required) - The ID of a project
|
2012-08-29 14:31:00 +02:00
|
|
|
+ `milestone_id` (required) - The ID of a project milestone
|
|
|
|
|
2013-02-20 22:51:59 +01:00
|
|
|
|
|
|
|
## Create new milestone
|
2012-08-29 14:31:00 +02:00
|
|
|
|
2013-02-20 22:51:59 +01:00
|
|
|
Creates a new project milestone.
|
2012-08-29 14:31:00 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
POST /projects/:id/milestones
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2012-12-21 18:47:04 +01:00
|
|
|
+ `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
|
|
|
|
|
2013-02-20 22:51:59 +01:00
|
|
|
|
2012-08-29 14:31:00 +02:00
|
|
|
## Edit milestone
|
|
|
|
|
2013-02-20 22:51:59 +01:00
|
|
|
Updates an existing project milestone.
|
2012-08-29 14:31:00 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
PUT /projects/:id/milestones/:milestone_id
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2012-12-21 18:47:04 +01:00
|
|
|
+ `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
|
2013-02-20 22:51:59 +01:00
|
|
|
|