List shift notes from current shift
GET
/api/timeclock/shift-notes
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/timeclock/shift-notes'
Response Response Example
{
"shiftId": "string",
"notes": [
{
"id": "string",
"shiftId": "string",
"content": "string",
"creatorId": "string",
"createdAt": "string",
"updatedAt": "string",
"type": "MANAGER_ONLY"
}
]
}
Request
None