POST api/ErrorLog/LogFEError
Request Information
URI Parameters
None.
Body Parameters
ErrorLogViewModelName | Description | Type | Additional information |
---|---|---|---|
InnerException | string |
None. |
|
Message | string |
None. |
|
Source | string |
None. |
|
StackTrace | string |
None. |
|
ApplicationUrl | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "InnerException": "sample string 1", "Message": "sample string 2", "Source": "sample string 3", "StackTrace": "sample string 4", "ApplicationUrl": "sample string 5" }
application/xml, text/xml
Sample:
<ErrorLogViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cyzerg.Model.Errorlog"> <ApplicationUrl>sample string 5</ApplicationUrl> <InnerException>sample string 1</InnerException> <Message>sample string 2</Message> <Source>sample string 3</Source> <StackTrace>sample string 4</StackTrace> </ErrorLogViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"InnerException":"sample string 1","Message":"sample string 2","Source":"sample string 3","StackTrace":"sample string 4","ApplicationUrl":"sample string 5"}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.