Milestones - Request Milestones information
GET yourdomain.com/api/milestones/:id
Header
json
| Field | Type | Description | 
|---|---|---|
| Authorization | String | 
 Basic Access Authentication token.  | 
Parameter
json
| Field | Type | Description | 
|---|---|---|
| id | Number | 
 Milestones unique ID.  | 
Success 200
json
| Field | Type | Description | 
|---|---|---|
| Milestones | Object | 
 information.  | 
Error 4xx
json
| Name | Type | Description | 
|---|---|---|
| status | Boolean | 
 Request status.  | 
| message | String | 
 No data were found.  | 
  HTTP/1.1 200 OK
{
    "id": "5",
    "name": "MIlestone A",
    "description": "",
    "description_visible_to_customer": "0",
    "due_date": "2019-09-30",
    "project_id": "2",
    "color": null,
    "milestone_order": "1",
    "datecreated": "2019-07-19",
    "total_tasks": "0",
    "total_finished_tasks": "0"
}
HTTP/1.1 404 Not Found
{
  "status": false,
  "message": "No data were found"
}