JSON_PersonQueueRawDataFileResult

JSON message about results of searching for queue management raw data

{
  "PersonQueueRawDataFileResult": /*required, search result of queue management raw file*/
  {		
    "searchID": , /*required, integer, search ID, which is used to save the search history for fast search at next time*/		
    "responseStatus": "", /*required, string, search status, "OK"-receiving completed, "NO MATCHES"-no data found, "MORE"-more data to be received at next time*/		
    "numOfMatches": , /*required, integer, number of returned records*/		
    "totalMatches": , /*required, integer, total number of matched records*/		
    "endTime": "", /*required, ios_8601 time, time of returning the last data record, e.g., 2004-05-03T00:00:00+08:00 or 2004-05-03T00:00:00.000Z*/		
    "fileURL": "" /*required, string, file URL*/
  }
}

Message Example

{
  "PersonQueueRawDataFileResult": {
    "searchID": 1,
    "responseStatus": "NO MATCHES",
    "numOfMatches": 0,
    "totalMatches": 0,
    "endTime": "1970-01-01T00:00:00",
    "fileURL": "http://10.10.36.163/ISAPI/Intelligent/DownloadFile?filePath=/home/RawFile_2017-01-14T00:00:00_1970-01-01T00:00:00.xls&"
  }
}