This is an API service to manage (review and process) worker's shifts applications.
- Description: view workers (two per page)
- Variables:
page: pagination (page number)
- Description: view worker's applications
- Variables:
id: worker Id.status: view application of certain type (pending,approved,declined).shift: include shift object inside application object (?shift=include).
- Description: Update a selection of worker's applications (either approved or declined application)
- Variables:
id: worker Id.JSON: object of applications with either approved or declined status - Example:
JSONPATCH request body as following
[
{
"id": 10,
"status": "declined"
},
{
"id": 11,
"status": "approved"
},
{
"id": 12,
"status": "approved"
}
]