Update an existing attendance event's fields in the SkyVision dashboard.
Body
Required
Update an existing attendance event
-
The unique identifier of the attendance event in SkyVision
-
The unique identifier of the attendance event that was generated and stored in your system. We will store this to be able to push updates to the same attendance event if needed
-
The unique employee id number/code that identifies the employee in the clients' organization
-
The unique identifier of the work location/site that is stored in your system, we will store this and map it to our site location IDs internally
-
The check-in/clock-in time of the employee to the work site/location in UTC.
-
The check-out/clock-out time of the employee to the work site/location in UTC.
PUT
/attendance-events
curl \
-X PUT https://cloud.sierraonetech.com/skyvision/integrations/v1/attendance-events \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"skyvision_id":123,"external_id":"abc123","employee_id":"AZ123","building":"string","time_in":"2023-05-04T09:42:00+00:00","time_out":"2023-05-04T09:42:00+00:00"}'
Request example
{
"skyvision_id": 123,
"external_id": "abc123",
"employee_id": "AZ123",
"building": "string",
"time_in": "2023-05-04T09:42:00+00:00",
"time_out": "2023-05-04T09:42:00+00:00"
}
Request examples
{
"skyvision_id": 123,
"external_id": "abc123",
"employee_id": "AZ123",
"building": "string",
"time_in": "2025-05-04T09:42:00Z",
"time_out": "2025-05-04T09:42:00Z"
}