GET api/UserLog?BranchID={BranchID}&CompID={CompID}&Fyear={Fyear}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| BranchID | string |
Required |
|
| CompID | string |
Required |
|
| Fyear | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of UserlogStatus| Name | Description | Type | Additional information |
|---|---|---|---|
| UserName | string |
None. |
|
| LastDate | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"UserName": "sample string 1",
"LastDate": "sample string 2"
},
{
"UserName": "sample string 1",
"LastDate": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfUserlogStatus xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ImpexMobileAPI.Controllers">
<UserlogStatus>
<LastDate>sample string 2</LastDate>
<UserName>sample string 1</UserName>
</UserlogStatus>
<UserlogStatus>
<LastDate>sample string 2</LastDate>
<UserName>sample string 1</UserName>
</UserlogStatus>
</ArrayOfUserlogStatus>