Neue API-Version v6.12.5 wurde veröffentlicht! 🎉
REST Dokumentation
GET Vorgänge

Vorgänge eines Projekts abrufen

Mit diesem Endpunkt können Sie die Vorgänge eines Projekts abrufen.

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": 1,
			"name": "et consequatur ad",
			"status": "in Arbeit",
			"description": null,
			"start_date": null,
			"end_date": null,
			"project": {
				"id": 1,
				"name": "praesentium",
				"description": "Molestiae eos facere incidunt sint a aperiam quia.",
				"start_date": "1996-11-30T00:00:00.000000Z",
				"end_date": null,
				"status": "in Arbeit",
				"comments": null,
				"cost_object": null,
				"cost_object_identifier": null,
				"created": "2023-12-29T13:04:32.000000Z",
				"modified": "2023-12-29T13:04:32.000000Z",
				"keywords": [
					"optio",
					"aut",
					"atque",
					"totam",
					"eum"
				],
				"reference_order": null,
				"reference_commission": null,
				"reference_procurement": null,
				"reference_object": null,
				"language": null,
				"currency": null,
				"url": null,
				"location_address": null,
				"location_city": null,
				"location_state": null,
				"location_country": null,
				"revenue_account": null,
				"customer_id": null,
				"customer_contact_id": null,
				"customer_project_reference": null,
				"customer_billing_address_id": null,
				"customer_shipping_address_id": null,
				"has_multiple_customers": null,
				"department_id": 0,
				"billing_type": null,
				"billing_tasks": null,
				"plan_hours": null,
				"plan_hours_per_day": null,
				"plan_can_exceed": false,
				"plan_warning_percent": null,
				"plan_warning_percent_2": null,
				"plan_warning_percent_3": null,
				"plan_wage": null,
				"plan_expenses": null,
				"plan_expenses_travel": null,
				"plan_hours_done": "0.0000000000",
				"plan_hours_invoiced": "0.0000000000"
			}
		},
		{
			"id": 2
			// ...
		}
	]
}