New API version v6.13.17 has been released! 🎉
REST Documentation
GET Meal Details

Get A Meal

You can use this endpoint to retrieve a specific meal for an employee.

Request

GET /api/v1/employees/:username/meals/:id
curl --request GET \
     --url 'https://www.zep-online.de/zepinstanz/next/api/v1/employees/alexandrea.stroman/meals/16' \
     --header 'Accept: application/json' \
     --header 'Authorization: Bearer {token}'

Response

{
	"data": {
		"id": 16,
		"employee_id": "alexandrea.stroman",
		"date": "2023-12-18",
		"breakfast": 0,
		"lunch": 1,
		"dinner": 0
	}
}