GET api/tblLogins
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of tblLogin| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| UserId | integer |
None. |
|
| UserIP | string |
None. |
|
| TimeIn | date |
None. |
|
| TimeOut | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"UserId": 2,
"UserIP": "sample string 3",
"TimeIn": "2025-12-31T10:52:57.9934846-06:00",
"TimeOut": "2025-12-31T10:52:57.9934846-06:00"
},
{
"id": 1,
"UserId": 2,
"UserIP": "sample string 3",
"TimeIn": "2025-12-31T10:52:57.9934846-06:00",
"TimeOut": "2025-12-31T10:52:57.9934846-06:00"
}
]
application/xml, text/xml
Sample:
<ArrayOftblLogin xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Classes">
<tblLogin>
<TimeIn>2025-12-31T10:52:57.9934846-06:00</TimeIn>
<TimeOut>2025-12-31T10:52:57.9934846-06:00</TimeOut>
<UserIP>sample string 3</UserIP>
<UserId>2</UserId>
<id>1</id>
</tblLogin>
<tblLogin>
<TimeIn>2025-12-31T10:52:57.9934846-06:00</TimeIn>
<TimeOut>2025-12-31T10:52:57.9934846-06:00</TimeOut>
<UserIP>sample string 3</UserIP>
<UserId>2</UserId>
<id>1</id>
</tblLogin>
</ArrayOftblLogin>