POST
/
api
/
timeclock
/
punch
/
register
Registrar marcacao de ponto
curl --request POST \
  --url https://suite.sisqualis.com.br/api/timeclock/punch/register/ \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "event_type": "entrada",
  "employee_id": 123,
  "snapshot_base64": "<string>"
}
'
{
  "id": 123,
  "employee_id": 123,
  "employee_name": "<string>",
  "event_type": "<string>",
  "occurred_at": "2023-11-07T05:31:56Z",
  "occurred_at_brt": "2023-11-07T05:31:56Z",
  "recognition_ok": true,
  "recognition_distance": 123,
  "source": "<string>"
}

Authorizations

Authorization
string
header
required

Use: Token <seu_token>

Body

event_type
enum<string>
required
Available options:
entrada,
inicio_intervalo,
fim_intervalo,
saida
employee_id
integer
snapshot_base64
string

Response

Marcacao registrada

id
integer
employee_id
integer
employee_name
string
event_type
string
occurred_at
string<date-time>
occurred_at_brt
string<date-time>
recognition_ok
boolean
recognition_distance
number | null
source
string