GET DeviceScanCounts?deviceName={deviceName}&perfIds={perfIds}
Returns the scan counts for the current device and performances.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| deviceName |
Define this parameter in the request URI. |
|
| perfIds |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
[
{
"Id": 1,
"Code": "sample string 2",
"ScanCount": 3
},
{
"Id": 1,
"Code": "sample string 2",
"ScanCount": 3
}
]
application/xml, text/xml
Sample:
<ArrayOfDeviceScanCount xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<DeviceScanCount>
<Id>1</Id>
<Code>sample string 2</Code>
<ScanCount>3</ScanCount>
</DeviceScanCount>
<DeviceScanCount>
<Id>1</Id>
<Code>sample string 2</Code>
<ScanCount>3</ScanCount>
</DeviceScanCount>
</ArrayOfDeviceScanCount>