POST api/Log/AuditLog
Request Information
URI Parameters
None.
Body Parameters
UserLog| Name | Description | Type | Additional information |
|---|---|---|---|
| LogType | string |
None. |
|
| EntityType | string |
None. |
|
| EntityId | string |
None. |
|
| ErrorDesc | string |
None. |
|
| UserId | string |
None. |
|
| VisitLink | string |
None. |
|
| Remarks | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"LogType": "sample string 1",
"EntityType": "sample string 2",
"EntityId": "sample string 3",
"ErrorDesc": "sample string 4",
"UserId": "sample string 5",
"VisitLink": "sample string 6",
"Remarks": "sample string 7"
}
application/xml, text/xml
Sample:
<UserLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models.Zica"> <EntityId>sample string 3</EntityId> <EntityType>sample string 2</EntityType> <ErrorDesc>sample string 4</ErrorDesc> <LogType>sample string 1</LogType> <Remarks>sample string 7</Remarks> <UserId>sample string 5</UserId> <VisitLink>sample string 6</VisitLink> </UserLog>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ModelResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseCode | integer |
None. |
|
| ResponseMessage | string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseCode": 1,
"ResponseMessage": "sample string 2",
"Data": {}
}
application/xml, text/xml
Sample:
<ModelResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Models.Zica"> <Data /> <ResponseCode>1</ResponseCode> <ResponseMessage>sample string 2</ResponseMessage> </ModelResponse>