Get project task details
Request
GET /api/v1/projects/:id/tasks/:id
curl --request GET \
--url 'https://www.zep-online.de/zepinstanz/next/api/v1/projects/2/tasks/18' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {token}'
Response
{
"data": {
"id": 22,
"name": "1",
"status": "Aktiv",
"description": "Analyse",
"parent_id": null,
"start_date": null,
"end_date": null,
"billing_type": {
"id": 0,
"name": "Like project"
},
"project_id": 5,
"created": "-000001-11-30T00:00:00.000000Z",
"modified": "2024-07-16T07:09:10.000000Z",
"plan_hours_children": 0,
"plan_hours_done": 7.5
}
}