Clock in a staff member
POST
/api/organizations/{organization_id}/staffmembers/{id}/locations/{location_id}/clock-in
staffmembers
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/organizations//staffmembers//locations//clock-in' \
--header 'Content-Type: application/json' \
--data-raw '{
"roleId": "role_001",
"utcOffset": -240,
"longitude": -122.406417,
"latitude": 37.785834
}'
Response Response Example
200 - Success
{
"id": "shift_002",
"employeeId": "emp_001",
"locationId": "loc_001",
"roleId": "role_001",
"startTime": "2023-10-27T14:00:00Z",
"endTime": null,
"breaks": [],
"hourlyWage": 20,
"totalPaidBreaks": 0,
"totalUnpaidBreaks": 0,
"duration": 0,
"payableDuration": 0,
"utcOffset": -240,
"utcStartTime": "2023-10-27T18:00:00Z",
"utcEndTime": null,
"locked": false,
"active": true,
"createdAt": "2023-10-27T14:00:00Z",
"updatedAt": "2023-10-27T14: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
Body Params application/json