How to get filtered event

elvinsiau

n3wb
Joined
Oct 3, 2023
Messages
1
Reaction score
0
Location
Indonesia
Hello sir miss, i want to ask something

i trying to test my attendance device of hikvision. here is the spec:

Model: DS-K1T341AMF

I want to get event which show the list of event that have a check in and check out event here is the sample response:
{
"AcsEvent": {
"searchID": "1",
"totalMatches": 72,
"responseStatusStrg": "MORE",
"numOfMatches": 30,
"InfoList": [
{
"major": 5,
"minor": 22,
"time": "2023-10-02T07:46:40+07:00",
"doorNo": 1,
"type": 0,
"serialNo": 574,
"currentVerifyMode": "invalid"
},
{
"major": 5,
"minor": 75,
"time": "2023-10-02T07:46:48+07:00",
"cardType": 1,
"name": "test schedule",
"cardReaderNo": 1,
"doorNo": 1,
"employeeNoString": "99",
"type": 0,
"serialNo": 575,
"userType": "normal",
"currentVerifyMode": "cardOrFaceOrFp",
"attendanceStatus": "checkIn",
"label": "Check In",
"mask": "no",
"pictureURL": "URL",
"picturesNumber": 1
},
{
"major": 5,
"minor": 21,
"time": "2023-10-02T07:46:48+07:00",
"doorNo": 1,
"type": 0,
"serialNo": 576,
"currentVerifyMode": "invalid",
"label": "Check In"
},
{
"major": 5,
"minor": 22,
"time": "2023-10-02T07:46:53+07:00",
"doorNo": 1,
"type": 0,
"serialNo": 577,
"currentVerifyMode": "invalid",
"label": "Check In"
},

here is the request json form:
{
"AcsEventCond": {
"searchID": "1",
"searchResultPosition": 0,
"maxResults": 1000,
"major": 5,
"minor": 0,
"startTime": "2023-10-02T00:00:00+07:00",
"endTime": "2023-10-03T23:59:59+07:00"
}
}

reference :

i want to ask sir and maam how to filter the get event which shows only event list that only valid authenticated check in and check out with fingerprint and face recognition?
 

Attachments

trempa92

Pulling my weight
Joined
Mar 26, 2020
Messages
745
Reaction score
231
Location
Croatia,Zagreb
major:5, minor:75

and filter out those who contain cardNumber if you dont want logs of them and just want fp/face.
 
Top