GET api/Reports/WebServiceLog/{webServiceLogId}

Allows a SAFEAdmin to get a web service log.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
webServiceLogId

The web service log identifier.

integer

Required

Body Parameters

None.

Response Information

Resource Description

The specified web service log.

ESignSystems.SmartSAFE.Models.Logging.WebServiceLogModel
NameDescriptionTypeAdditional information
WebServiceLogId

Gets or sets the create web service log identifier.

integer

None.

OrganizationId

Gets or sets the organization identifier.

integer

None.

OrganizationName

Gets or sets the organization name.

string

None.

ClientId

Gets or sets the client identifier.

integer

None.

ClientName

Gets or sets the client name.

string

None.

SigningRoomId

Gets or sets the SigningRoom identifier.

integer

None.

SigningRoomName

Gets or sets the SigningRoom name.

string

None.

UserId

Gets or sets the user identifier.

integer

None.

CreatedBy

Gets or sets the name of the user who created the SigningRoom.

string

None.

CreatedDate

Gets or sets the date and time that the SigningRoom was created.

date

None.

Success

Gets or sets a value indicating whether or not the SigningRoom was successfully created.

boolean

None.

RequestType

Gets the type of request that was made to the service.

string

None.

ParameterData

Gets or sets the parameter data.

string

None.

RequestData

Gets or sets the data representing the SigningRoom to create.

string

None.

ResponseData

Gets or sets the data representing the results of the creation.

string

None.

Route

Gets or sets the route of the web service call.

string

None.

ControllerName

Gets or sets the name of the controller that handled the web service call.

string

None.

Server

Gets or sets the server that the service call was made on.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "WebServiceLogId": 1,
  "OrganizationId": 1,
  "OrganizationName": "sample string 1",
  "ClientId": 1,
  "ClientName": "sample string 2",
  "SigningRoomId": 1,
  "SigningRoomName": "sample string 3",
  "UserId": 1,
  "CreatedBy": "sample string 4",
  "CreatedDate": "2024-11-26T17:20:59.2501167-05:00",
  "Success": true,
  "RequestType": "sample string 6",
  "ParameterData": "sample string 7",
  "RequestData": "sample string 8",
  "ResponseData": "sample string 9",
  "Route": "sample string 10",
  "ControllerName": "sample string 11",
  "Server": "sample string 12"
}

application/xml, text/xml

Sample:
<WebServiceLogModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Logging">
  <ClientId>1</ClientId>
  <ClientName>sample string 2</ClientName>
  <ControllerName>sample string 11</ControllerName>
  <CreatedBy>sample string 4</CreatedBy>
  <CreatedDate>2024-11-26T17:20:59.2501167-05:00</CreatedDate>
  <OrganizationId>1</OrganizationId>
  <OrganizationName>sample string 1</OrganizationName>
  <ParameterData>sample string 7</ParameterData>
  <RequestData>sample string 8</RequestData>
  <RequestType>sample string 6</RequestType>
  <ResponseData>sample string 9</ResponseData>
  <Route>sample string 10</Route>
  <Server>sample string 12</Server>
  <SigningRoomId>1</SigningRoomId>
  <SigningRoomName>sample string 3</SigningRoomName>
  <Success>true</Success>
  <UserId>1</UserId>
  <WebServiceLogId>1</WebServiceLogId>
</WebServiceLogModel>