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

Einzelnes Ticket abrufen

Mit diesem Endpunkt können Sie ein einzelnes Ticket abrufen.

Request

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

Response

{
	"data": {
		"id": 1,
		"subject": "Kundenkontaktformular aktualisieren",
		"priority": 3,
		"status": {
			"id": 5,
			"name": "bewilligt"
		},
		"creator_username": "max.mustermann",
		"processor_username": "anna.schmidt",
		"date": "2024-02-25 13:36:42",
		"receipt_date": null,
		"start_date": null,
		"deadline": null,
		"processing_date": "2024-02-28 14:09:38",
		"done_date": "2024-02-28 14:11:38",
		"approved_date": "2024-03-12 08:23:54",
		"rejected_date": null,
		"billed_date": null,
		"planned_hours": null,
		"prevent_overbooking": 0,
		"history_modified": "2024-03-12 08:23:54",
		"project_id": 43,
		"project_task_id": 196,
		"notify_of_completion": null,
		"customer_contact_person_id": null,
		"history_creator_username": "max.mustermann",
		"customer_reference": null,
		"external_ticket_number": null,
		"from_mail": null,
		"created": "2024-02-25T13:36:42.000000Z",
		"modified": "2024-05-14T14:13:24.000000Z",
		"keywords": [],
		"categories": []
	}
}