Get Milestone by ID
GET/api/milestones/{id}
Headers
| Field | Type | Description |
|---|---|---|
| authtoken | String | Authentication token, generated from admin area |
curl -X GET "https://yoursite.com/api/milestones/123" \
-H "authtoken: YOUR_API_TOKEN" Success-Response:
{
"id": "1",
"title": "Phase 1",
"project_id": "1",
"due_date": "2024-02-01",
"description": ""
}