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 name | Type | Description | Example |
fadaDeviceUserId | string | The user ID of the person on the device. | "5412" |
name | string | The name of the person as recorded in online portal. | "Ahmad Abu" |
externalUserId | string | The External User ID of the person as recorded in online portal. | "21775" |
verifyMode | number | How the user checked in. 1 for thumbrint. | 1 |
ioMode | number | 1 for IN, 2 for OUT | 1 |
ioModeText | string | "IN" for IN, "OUT" for OUT | "IN" |
ioTime | string | Date and time of the event | "2023-08-10T12:59:16" |
ioTimeRaw | string | Date 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" } ]