Clock out a staff member
POST
/api/organizations/{organization_id}/staffmembers/{id}/locations/{location_id}/clock-out
staffmembers
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/organizations//staffmembers//locations//clock-out'
Response Response Example
200 - Success
{
"id": "shift_002",
"employeeId": "emp_001",
"locationId": "loc_001",
"roleId": "role_001",
"startTime": "2023-10-27T14:00:00Z",
"endTime": "2023-10-27T18:00:00Z",
"breaks": [],
"hourlyWage": 20,
"totalPaidBreaks": 0,
"totalUnpaidBreaks": 0,
"duration": 240,
"payableDuration": 240,
"utcOffset": -240,
"utcStartTime": "2023-10-27T18:00:00Z",
"utcEndTime": "2023-10-27T22:00:00Z",
"locked": false,
"active": false,
"createdAt": "2023-10-27T14:00:00Z",
"updatedAt": "2023-10-27T18:00:00Z",
"deletedAt": null
}
Request
Path Params
id
string
required
Example:
emp_001
location_id
string
required
Example:
loc_001
organization_id
string
required
Example:
org_12345