GET api/UploadedFileController/GetDevicesForGroup?username={username}&password={password}&groupname={groupname}&startdate={startdate}&enddate={enddate}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
username | string |
Required |
|
password | string |
Required |
|
groupname | string |
Required |
|
startdate | date |
Required |
|
enddate | date |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of GroupDeviceName | Description | Type | Additional information |
---|---|---|---|
RFID | string |
None. |
|
minScanDate | date |
None. |
|
maxScanDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "RFID": "sample string 1", "minScanDate": "2025-01-07T22:11:04.3976665+11:00", "maxScanDate": "2025-01-07T22:11:04.3976665+11:00" }, { "RFID": "sample string 1", "minScanDate": "2025-01-07T22:11:04.3976665+11:00", "maxScanDate": "2025-01-07T22:11:04.3976665+11:00" } ]
application/xml, text/xml
Sample:
<ArrayOfGroupDevice xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TransactionDatabaseConnector"> <GroupDevice> <RFID>sample string 1</RFID> <maxScanDate>2025-01-07T22:11:04.3976665+11:00</maxScanDate> <minScanDate>2025-01-07T22:11:04.3976665+11:00</minScanDate> </GroupDevice> <GroupDevice> <RFID>sample string 1</RFID> <maxScanDate>2025-01-07T22:11:04.3976665+11:00</maxScanDate> <minScanDate>2025-01-07T22:11:04.3976665+11:00</minScanDate> </GroupDevice> </ArrayOfGroupDevice>