GET api/Admin/ExceptionLog/{exceptionLogId}

Allows a SAFEAdmin to get the specified exception log.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
exceptionLogId

The exception log identifier.

integer

Required

Body Parameters

None.

Response Information

Resource Description

The specified exception log.

ESignSystems.SmartSAFE.Models.Reports.ExceptionLogEntry
NameDescriptionTypeAdditional information
ExceptionLogId

Gets or sets the exception log identifier.

integer

None.

Application

Gets or sets the application that caused the exception.

string

None.

MethodName

Gets or sets the name of the method that caused the exception.

string

None.

Message

Gets or sets the exception message.

string

None.

StackTrace

Gets or sets the stack trace of the exception.

string

None.

Severity

Gets or sets the severity of the exception.

integer

None.

Server

Gets or sets the server where the exception occurred.

string

None.

UserName

Gets or sets the name of the user that caused the exception.

string

None.

CreatedDate

Gets or sets the date that the exception was created.

date

None.

RequestData

Gets or sets the request data of the exception.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ExceptionLogId": 1,
  "Application": "sample string 2",
  "MethodName": "sample string 3",
  "Message": "sample string 4",
  "StackTrace": "sample string 5",
  "Severity": 6,
  "Server": "sample string 7",
  "UserName": "sample string 8",
  "CreatedDate": "2024-11-26T17:27:26.027025-05:00",
  "RequestData": "sample string 10"
}

application/xml, text/xml

Sample:
<ExceptionLogEntry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Reports">
  <Application>sample string 2</Application>
  <CreatedDate>2024-11-26T17:27:26.027025-05:00</CreatedDate>
  <ExceptionLogId>1</ExceptionLogId>
  <Message>sample string 4</Message>
  <MethodName>sample string 3</MethodName>
  <RequestData>sample string 10</RequestData>
  <Server>sample string 7</Server>
  <Severity>6</Severity>
  <StackTrace>sample string 5</StackTrace>
  <UserName>sample string 8</UserName>
</ExceptionLogEntry>