Get Subtasks Of A Ticket
You can use this endpoint to get the subtasks of a ticket.
Request
GET /api/v1/tickets/:id/subtasks
curl --request GET \
--url 'https://www.zep-online.de/zepinstanz/next/api/v1/tickets/1/subtasks' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {token}'
Response
{
"data": [
{
"id": 1,
"name": "voluptate",
"ticket_id": 1,
"date": "2024-02-19 13:56:19",
"creator_username": "amaya.hauck",
"processor_username": null,
"subject": "Vel voluptatibus qui repellendus aut quis eveniet numquam. Velit eligendi atque eum beatae soluta magnam sapiente. Neque eum id explicabo doloribus sapiente.",
"status": {
"id": 1,
"name": "new"
},
"receipt_date": null,
"start_date": null,
"deadline": null,
"processing_date": null,
"done_date": null,
"planned_hours": null,
"prevent_overbooking": 0,
"history_modified": "2024-02-19 13:56:19",
"keywords": [
"provident",
"alias",
"quia",
"nulla",
"enim"
],
"created": "2024-02-19T13:56:19.000000Z",
"modified": "2024-02-19T13:56:19.000000Z",
"customer_contact_person_id": null,
"history_creator_username": "amaya.hauck"
}, {
"id": 1,
// ...
}
]
}