Neue API-Version v7.4.2 wurde veröffentlicht! 🎉
REST Dokumentation
GET Teilaufgaben

Teilaufgaben eines Tickets abrufen

Mit diesem Endpunkt können Sie die Teilaufgaben eines Tickets abrufen.

Request

GET /api/v1/tickets/:id/subtasks
curl --request GET \
     --url 'https://www.zep-online.de/zepinstanz/next/api/v1/tickets/14913/subtasks' \
     --header 'Accept: application/json' \
     --header 'Authorization: Bearer {token}'

Response

{
	"data": [
		{
			"id": 931,
			"name": "1.0",
			"ticket_id": 14913,
			"date": "2024-07-16 11:17:00",
			"creator_username": "max.mustermann",
			"processor_username": null,
			"subject": "Dokumentation aktualisieren",
			"status": {
				"id": 3,
				"name": "fertig"
			},
			"receipt_date": "2024-07-12 12:05:00",
			"start_date": null,
			"deadline": null,
			"processing_date": "2024-07-17 08:05:57",
			"done_date": "2024-07-17 08:38:15",
			"planned_hours": null,
			"prevent_overbooking": 0,
			"history_modified": "2024-07-17 08:38:15",
			"keywords": [],
			"created": "2024-07-16T09:17:00.000000Z",
			"modified": "2024-07-17T06:38:15.000000Z",
			"customer_contact_person_id": null,
			"history_creator_username": "max.mustermann"
		}, 
		{
			"id": 932,
			"name": "1.1",
			"ticket_id": 14913,
			"date": "2024-07-16 11:17:00",
			"creator_username": "max.mustermann",
			"processor_username": null,
			"subject": "API Endpunkte überprüfen",
			"status": {
				"id": 3,
				"name": "fertig"
			},
			"receipt_date": "2024-07-12 12:09:00",
			"start_date": null,
			"deadline": null,
			"processing_date": "2024-07-16 17:29:03",
			"done_date": "2024-07-16 17:29:03",
			"planned_hours": null,
			"prevent_overbooking": 0,
			"history_modified": "2024-07-16 17:29:03",
			"keywords": [],
			"created": "2024-07-16T09:17:00.000000Z",
			"modified": "2024-07-16T15:29:03.000000Z",
			"customer_contact_person_id": null,
			"history_creator_username": "max.mustermann"
		}
	]
}