Get Task by ID
GET/api/tasks/{id}
Headers
| Field | Type | Description |
|---|---|---|
| authtoken | String | Authentication token, generated from admin area |
Parameters
| Field | Type | Description |
|---|---|---|
| id | Number | Task unique ID |
curl -X GET "https://yoursite.com/api/tasks/123" \
-H "authtoken: YOUR_API_TOKEN" Success-Response:
{
"id": "1",
"title": "Task Title",
"description": "Task description",
"project_id": "1",
"milestone_id": "0",
"assigned_to": "2",
"deadline": "2021-12-31 23:59:59",
"status": "in_progress",
"priority_id": "1",
"start_date": "2021-09-01 00:00:00",
"created_date": "2021-09-01",
"context": "project"
}