POST api/Logger/SystemLog
Request Information
URI Parameters
None.
Body Parameters
RequestAppLogName | Description | Type | Additional information |
---|---|---|---|
IP | string |
None. |
|
SaasId | string |
None. |
|
Type | string |
None. |
|
Message | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "IP": "sample string 1", "SaasId": "sample string 2", "Type": "sample string 3", "Message": "sample string 4" }
application/xml, text/xml
Sample:
<RequestAppLog xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Isonfor.ECommerce.Common.Entity.Request.Log"> <IP>sample string 1</IP> <Message>sample string 4</Message> <SaasId>sample string 2</SaasId> <Type>sample string 3</Type> </RequestAppLog>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ExecuteResultOfBooleanName | Description | Type | Additional information |
---|---|---|---|
Data | boolean |
None. |
|
Success | boolean |
None. |
|
IsSuccess | boolean |
None. |
|
Msg | string |
None. |
|
Code | integer |
None. |
|
StatusCode | string |
None. |
|
Errors | Dictionary of string [key] and string [value] |
None. |
Response Formats
application/json, text/json
Sample:
{ "Data": true, "Success": true, "IsSuccess": true, "Msg": "sample string 4", "Code": 5, "StatusCode": "sample string 6", "Errors": { "sample string 1": "sample string 2", "sample string 3": "sample string 4" } }
application/xml, text/xml
Sample:
<ExecuteResultOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZTSoft.Core"> <Code>5</Code> <Errors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:KeyValueOfstringstring> <d2p1:Key>sample string 1</d2p1:Key> <d2p1:Value>sample string 2</d2p1:Value> </d2p1:KeyValueOfstringstring> <d2p1:KeyValueOfstringstring> <d2p1:Key>sample string 3</d2p1:Key> <d2p1:Value>sample string 4</d2p1:Value> </d2p1:KeyValueOfstringstring> </Errors> <IsSuccess>true</IsSuccess> <Msg>sample string 4</Msg> <StatusCode>sample string 6</StatusCode> <Success>true</Success> <Data>true</Data> </ExecuteResultOfboolean>