Skip to main content
PATCH
/
workers
/
{id}
/
time-punches
/
{punch_id}
Edit Worker Time Punch
curl --request PATCH \
  --url https://api.roostedhr.com/api/1_12/workers/{id}/time-punches/{punch_id} \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "punch_datetime": "2026-03-17 10:30:00",
  "erf_id": "<string>"
}
'
true

Authorizations

X-API-KEY
string
header
required

Path Parameters

id
string
required

Worker ID

punch_id
string
required

Time Punch ID

Body

application/json

Fields to update on the time punch

punch_datetime
string<date-time>

Updated punch datetime.

Example:

"2026-03-17 10:30:00"

erf_id
string

Shift assignment ID to associate this punch with.

Response

OK

The response is of type boolean.