GET api/PwdLogChecks
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of PwdLogCheck| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| UserName | string |
None. |
|
| PwdDate | string |
None. |
|
| LoggedIn | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"UserName": "sample string 2",
"PwdDate": "sample string 3",
"LoggedIn": "sample string 4"
},
{
"Id": 1,
"UserName": "sample string 2",
"PwdDate": "sample string 3",
"LoggedIn": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfPwdLogCheck xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NTInfotainmentWebApi.Models">
<PwdLogCheck>
<Id>1</Id>
<LoggedIn>sample string 4</LoggedIn>
<PwdDate>sample string 3</PwdDate>
<UserName>sample string 2</UserName>
</PwdLogCheck>
<PwdLogCheck>
<Id>1</Id>
<LoggedIn>sample string 4</LoggedIn>
<PwdDate>sample string 3</PwdDate>
<UserName>sample string 2</UserName>
</PwdLogCheck>
</ArrayOfPwdLogCheck>