Flow Unified API
API ReferenceRestaurant

Time entry · time_entry

Portable restaurant labor time-entry / punch-clock contract.

Entity type: time_entry · Methods: GET

Portable restaurant labor time-entry / punch-clock contract.

Endpoints

GET  /unified/{accountId}/time_entry   # List normalized time_entry records

Schema

FieldTypeRequiredDescription
externalIdstringYesStable time-entry identifier.
employeeExternalIdstringEmployee identifier.
jobExternalIdstringJob / role identifier.
shiftExternalIdstringParent shift identifier.
startAtstring · ISO 8601Punch-in time.
endAtstring · ISO 8601Punch-out time.
regularHoursnumberRegular hours worked.
overtimeHoursnumberOvertime hours worked.
statusstringSource time-entry status.

Example object

{
  "externalId": "te_43011",
  "employeeExternalId": "emp_2214",
  "jobExternalId": "job_line_cook",
  "shiftExternalId": "shf_88213",
  "startAt": "2026-07-08T15:00:00Z",
  "endAt": "2026-07-08T23:00:00Z",
  "regularHours": 8,
  "overtimeHours": 0,
  "status": "CLOSED"
}

The same shape is used as the POST request body and returned by GET reads — reads from every connected system are normalized to it.

Requests

read time_entry
curl "https://dev.flow.staging.linktoany.com/api/1.0/standalone-link-engine-service/unified/{accountId}/time_entry?mappingKey={readKey}&pageSize=50" \
  -H "authorization: Bearer <token>"

Supported systems

SystemReadWriteAuthRate limit
ToastYesAPI token5 req / s

On this page