DailyAttendanceLogPush webhook will be fired every day at 1am for attendances that has been recorded for the day prior (Example: Attendances on 13/5/2022 will be sent on 14/5/2022 1am).


The payload will contain an array of attendance object as per below:


Property nameTypeDescriptionExample
fadaDeviceUserIdstringThe user ID of the person on the device."5412"
namestringThe name of the person as recorded in online portal."Ahmad Abu"
externalUserIdstringThe External User ID of the person as recorded in online portal."21775"
verifyModenumber
How the user checked in.
1 for thumbrint.
1
ioModenumber1 for IN, 2 for OUT1
ioModeTextstring"IN" for IN, "OUT" for OUT"IN"
ioTimestringDate and time of the event"2023-08-10T12:59:16"
ioTimeRawstringDate and time of the event with no formatting."20230810125916"


Example Payload:


[
    {
        "fadaDeviceUserId":"21775",
        "name":"AHMAD ABU",
        "externalUserId":"21775",
        "verifyMode":1,
        "ioMode":1,
        "ioModeText":"IN",
        "ioTime":"2023-08-10T12:59:16",
        "ioTimeRaw":"20230810125916"
    },
    {
        "fadaDeviceUserId":"21775",
        "name":"AHMAD ABU",
        "externalUserId":"21775",
        "verifyMode":1,
        "ioMode":2,
        "ioModeText":"OUT",
        "ioTime":"2023-08-10T17:25:19",
        "ioTimeRaw":"20230810122519"
    }
]