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

Authorizations

X-API-KEY
string
header
required

Path Parameters

id
string
required

Worker ID

Body

application/json

Time punch data

erf_id
string
required

Shift assignment ID.

punch_date
string<date-time>
required

Punch datetime.

Example:

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

Response

Created

The response is of type boolean.