Skip to main content
DELETE
/
v1
/
timekeeping
/
timecard
/
punches
/
{punchId}
Delete Timecard Punch
curl --request DELETE \
  --url https://app.untetherlabs.com/api/v1/timekeeping/timecard/punches/{punchId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "timecardId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "providerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "createdAt": "2024-11-20T07:43:34+0000",
  "updatedAt": "2024-11-20T07:43:34+0000",
  "action": "clock_in",
  "state": "pending",
  "time": "2024-11-20T07:43:34+0000",
  "providerNote": "Felt sick, had to leave early.",
  "adminNote": "Adjusted to schedule.",
  "generated": false
}
Delete a punch

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

punchId
string<uuid>
required

Response

id
string<uuid>
required
timecardId
string<uuid>
required
providerId
string<uuid>
required
createdAt
string
required
Example:

"2024-11-20T07:43:34+0000"

updatedAt
string
required
Example:

"2024-11-20T07:43:34+0000"

action
enum<string>
required
Available options:
clock_in,
clock_out,
break_start,
break_end
state
enum<string>
required
Available options:
pending,
approved,
rejected
time
string
required
Example:

"2024-11-20T07:43:34+0000"

providerNote
string | null
required
Example:

"Felt sick, had to leave early."

adminNote
string | null
required
Example:

"Adjusted to schedule."

generated
boolean
default:false