POST api/UserLog
Request Information
URI Parameters
None.
Body Parameters
UserLogDetailViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Type | string |
None. |
|
| UserId | integer |
None. |
|
| IPAddress | string |
None. |
|
| MACAddress | string |
None. |
|
| BrowserInfo | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Type": "sample string 1",
"UserId": 2,
"IPAddress": "sample string 3",
"MACAddress": "sample string 4",
"BrowserInfo": "sample string 5"
}
application/xml, text/xml
Sample:
<UserLogDetailViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BAL.ViewModel"> <BrowserInfo>sample string 5</BrowserInfo> <IPAddress>sample string 3</IPAddress> <MACAddress>sample string 4</MACAddress> <Type>sample string 1</Type> <UserId>2</UserId> </UserLogDetailViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |