POST api/LogException

Logs an exception to the exception logger set up in web.config.

Request Information

Request body formats

application/json, text/json

Sample:
{
  "User": "sample string 1",
  "Message": "sample string 2",
  "StackTrace": "sample string 3"
}

Response Information

Response body formats

application/json, text/json

Sample:
{
  "StatusCode": "Continue",
  "ErrorCode": 0,
  "ErrorCodeMessage": "No Error",
  "Messages": [
    "sample string 1",
    "sample string 2",
    "sample string 3"
  ]
}