Create a new attendance event (check-in or check-out) in the SkyVision dashboard.
POST
/attendance-events
curl \
-X POST https://cloud.sierraonetech.com/skyvision/integrations/v1/attendance-events \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"external_id":"abc123","employee_id":"AZ123","building":"string","time_in":"2023-05-04T09:42:00+00:00"}'
Request examples
Checkinattendanceevent (generated)
{
"external_id": "abc123",
"employee_id": "AZ123",
"building": "string",
"time_in": "2023-05-04T09:42:00+00:00"
}
{
"external_id": "abc123",
"employee_id": "AZ123",
"building": "string",
"time_out": "2023-05-04T09:42:00+00:00"
}
Request examples
Checkinattendanceevent
{
"external_id": "abc123",
"employee_id": "AZ123",
"building": "string",
"time_in": "2025-05-04T09:42:00Z"
}
{
"external_id": "abc123",
"employee_id": "AZ123",
"building": "string",
"time_out": "2025-05-04T09:42:00Z"
}
Response examples (201)
{
"skyvision_id": 123
}
Response examples (201)
{
"skyvision_id": 123
}