Teilaufgabe eines Tickets abrufen
Mit diesem Endpunkt können Sie eine spezifische Teilaufgabe eines Tickets abrufen.
Request
GET /api/v1/tickets/:id/subtasks/:id
curl --request GET \
--url 'https://www.zep-online.de/zepinstanz/next/api/v1/tickets/14913/subtasks/931' \
--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"
}
}