New API version v6.13.17 has been released! 🎉
REST Documentation
GET Project tasks

Get Project Tasks

You can use this endpoint to call up the project tasks of a project.

Request

GET /api/v1/projects/:id/tasks
curl --request GET \
     --url 'https://www.zep-online.de/zepinstanz/next/api/v1/projects/1/tasks' \
     --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
		},
		{
			"id": 23,
			// ...
		},
	]
}