1.1 KiB
1.1 KiB
List project milestones
Returns a list of project milestones.
GET /projects/:id/milestones
Parameters:
id
(required) - The ID of a project
Get single milestone
Gets a single project milestone.
GET /projects/:id/milestones/:milestone_id
Parameters:
id
(required) - The ID of a projectmilestone_id
(required) - The ID of a project milestone
Create new milestone
Creates a new project milestone.
POST /projects/:id/milestones
Parameters:
id
(required) - The ID of a projecttitle
(required) - The title of an milestonedescription
(optional) - The description of the milestonedue_date
(optional) - The due date of the milestone
Edit milestone
Updates an existing project milestone.
PUT /projects/:id/milestones/:milestone_id
Parameters:
id
(required) - The ID of a projectmilestone_id
(required) - The ID of a project milestonetitle
(optional) - The title of a milestonedescription
(optional) - The description of a milestonedue_date
(optional) - The due date of the milestonestate_event
(optional) - The state event of the milestone (close|activate)