GET api/tblLogins/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
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:56:24.7527166-06:00",
"TimeOut": "2025-12-31T10:56:24.7527166-06:00"
}
application/xml, text/xml
Sample:
<tblLogin xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Classes"> <TimeIn>2025-12-31T10:56:24.7527166-06:00</TimeIn> <TimeOut>2025-12-31T10:56:24.7527166-06:00</TimeOut> <UserIP>sample string 3</UserIP> <UserId>2</UserId> <id>1</id> </tblLogin>