GET api/UploadController/GetCommandLoggers

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Logger
NameDescriptionTypeAdditional information
ID

integer

None.

Identifier

string

None.

Active

boolean

None.

DefaultPIC

string

None.

Notes

string

None.

LastComms

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "Identifier": "sample string 2",
    "Active": true,
    "DefaultPIC": "sample string 4",
    "Notes": "sample string 5",
    "LastComms": "2025-01-07T22:04:47.0021122+11:00"
  },
  {
    "ID": 1,
    "Identifier": "sample string 2",
    "Active": true,
    "DefaultPIC": "sample string 4",
    "Notes": "sample string 5",
    "LastComms": "2025-01-07T22:04:47.0021122+11:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfLogger xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TransactionDatabaseConnector">
  <Logger>
    <Active>true</Active>
    <DefaultPIC>sample string 4</DefaultPIC>
    <ID>1</ID>
    <Identifier>sample string 2</Identifier>
    <LastComms>2025-01-07T22:04:47.0021122+11:00</LastComms>
    <Notes>sample string 5</Notes>
  </Logger>
  <Logger>
    <Active>true</Active>
    <DefaultPIC>sample string 4</DefaultPIC>
    <ID>1</ID>
    <Identifier>sample string 2</Identifier>
    <LastComms>2025-01-07T22:04:47.0021122+11:00</LastComms>
    <Notes>sample string 5</Notes>
  </Logger>
</ArrayOfLogger>