GET api/UserController/GetUserLoggers?username={username}&password={password}&email={email}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
username | string |
Required |
|
password | string |
Required |
|
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of LoggerName | Description | Type | Additional 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:07.0598188+11:00" }, { "ID": 1, "Identifier": "sample string 2", "Active": true, "DefaultPIC": "sample string 4", "Notes": "sample string 5", "LastComms": "2025-01-07T22:04:07.0598188+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:07.0598188+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:07.0598188+11:00</LastComms> <Notes>sample string 5</Notes> </Logger> </ArrayOfLogger>