Get projects of an employee
Request
GET /api/v1/employees/:username/projects
curl --request GET \
--url 'https://www.zep-online.de/zepinstanz/next/api/v1/employees/alexandrea.stroman/projects' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {token}'
Response
{
"data": [
{
"employee_id": "alexandrea.stroman",
"project_id": 2,
"from": null,
"to": null,
"note": null,
"availability": 100,
"internal_rate": null,
"rate_type": {
"id": 0,
"name": "keines"
},
"type": {
"id": "1",
"name": "Project manager with budget responsibility"
},
"priceGroup": {
"id": 3,
"name": "01",
"number": null,
"status": true,
"description": {
"de": "Senior",
"en": "Senior"
}
}
}
]
}