GET api/CommandController/ListLoggerCommands?username={username}&password={password}&Identifier={Identifier}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
username | string |
Required |
|
password | string |
Required |
|
Identifier | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of LoggerCommandName | Description | Type | Additional information |
---|---|---|---|
CommandID | integer |
None. |
|
SetDate | date |
None. |
|
Command | string |
None. |
|
RetreiveDate | date |
None. |
|
Response | string |
None. |
|
ResposeDate | date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "CommandID": 1, "SetDate": "2025-01-07T21:47:44.6608758+11:00", "Command": "sample string 3", "RetreiveDate": "2025-01-07T21:47:44.6608758+11:00", "Response": "sample string 5", "ResposeDate": "2025-01-07T21:47:44.6608758+11:00" }, { "CommandID": 1, "SetDate": "2025-01-07T21:47:44.6608758+11:00", "Command": "sample string 3", "RetreiveDate": "2025-01-07T21:47:44.6608758+11:00", "Response": "sample string 5", "ResposeDate": "2025-01-07T21:47:44.6608758+11:00" } ]
application/xml, text/xml
Sample:
<ArrayOfLoggerCommand xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TransactionDatabaseConnector"> <LoggerCommand> <Command>sample string 3</Command> <CommandID>1</CommandID> <Response>sample string 5</Response> <ResposeDate>2025-01-07T21:47:44.6608758+11:00</ResposeDate> <RetreiveDate>2025-01-07T21:47:44.6608758+11:00</RetreiveDate> <SetDate>2025-01-07T21:47:44.6608758+11:00</SetDate> </LoggerCommand> <LoggerCommand> <Command>sample string 3</Command> <CommandID>1</CommandID> <Response>sample string 5</Response> <ResposeDate>2025-01-07T21:47:44.6608758+11:00</ResposeDate> <RetreiveDate>2025-01-07T21:47:44.6608758+11:00</RetreiveDate> <SetDate>2025-01-07T21:47:44.6608758+11:00</SetDate> </LoggerCommand> </ArrayOfLoggerCommand>