Update a Milestone

PUT/api/milestones/{id}

Headers

FieldTypeDescription
authtoken String Authentication token, generated from admin area

Parameters

FieldTypeDescription
id Number Milestone unique ID
title string optional Optional Title to update
due_date string optional Optional Due date to update
description string optional Optional Description to update
curl -X PUT "https://yoursite.com/api/milestones/123" \
  -H "authtoken: YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "field": "value" }'

Success-Response:

HTTP/1.1 200 OK
{
  "status": 200,
  "messages": {"success": "Milestone update success"}
}
MethodPUT
Path/api/milestones/{id}
GroupMilestones
Sincev1.0.0
Defined inRestApi/Controllers/MilestonesController.php