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

Get Meals

Get the meals of an employee.

Request

GET /api/v1/employees/:username/meals
curl --request GET \
     --url 'https://www.zep-online.de/zepinstanz/next/api/v1/employees/alexandrea.stroman/meals' \
     --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
		},
		{
			"id": 17
			// ...
		}
	]
}