GET /attendance-events

Lookup and retrieve information about an attendance event by its skyvision_id.

Query parameters

  • skyvision_id string Required

    The id of the attendance event on SkyVision

Responses

  • 401

    Invalid authentication token

  • 404

    Attendance Event not found

  • 200

    Successfully retrieved attendance event

    One of:
  • 400

    Invalid or missing request parameters

GET /attendance-events
curl \
 -X GET https://cloud.sierraonetech.com/skyvision/integrations/v1/attendance-events?skyvision_id=string \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "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"
}
Response examples (200)
{
  "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"
}