GET api/UserController/GetUserLoggersWithUsage?username={username}&password={password}&email={email}&startdate={startdate}&enddate={enddate}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
username | string |
Required |
|
password | string |
Required |
|
string |
Required |
||
startdate | date |
Required |
|
enddate | date |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of LoggerUsageName | Description | Type | Additional information |
---|---|---|---|
ID | integer |
None. |
|
Identifier | string |
None. |
|
Active | boolean |
None. |
|
DefaultPIC | string |
None. |
|
Notes | string |
None. |
|
LastComms | date |
None. |
|
Lat | decimal number |
None. |
|
Lon | decimal number |
None. |
|
ScanCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Lat": 1.1, "Lon": 2.1, "ScanCount": 3, "ID": 1, "Identifier": "sample string 2", "Active": true, "DefaultPIC": "sample string 4", "Notes": "sample string 5", "LastComms": "2025-01-07T22:26:01.8281012+11:00" }, { "Lat": 1.1, "Lon": 2.1, "ScanCount": 3, "ID": 1, "Identifier": "sample string 2", "Active": true, "DefaultPIC": "sample string 4", "Notes": "sample string 5", "LastComms": "2025-01-07T22:26:01.8281012+11:00" } ]
application/xml, text/xml
Sample:
<ArrayOfLoggerUsage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TransactionDatabaseConnector"> <LoggerUsage> <Active>true</Active> <DefaultPIC>sample string 4</DefaultPIC> <ID>1</ID> <Identifier>sample string 2</Identifier> <LastComms>2025-01-07T22:26:01.8281012+11:00</LastComms> <Notes>sample string 5</Notes> <Lat>1.1</Lat> <Lon>2.1</Lon> <ScanCount>3</ScanCount> </LoggerUsage> <LoggerUsage> <Active>true</Active> <DefaultPIC>sample string 4</DefaultPIC> <ID>1</ID> <Identifier>sample string 2</Identifier> <LastComms>2025-01-07T22:26:01.8281012+11:00</LastComms> <Notes>sample string 5</Notes> <Lat>1.1</Lat> <Lon>2.1</Lon> <ScanCount>3</ScanCount> </LoggerUsage> </ArrayOfLoggerUsage>