GET api/SmartRegistry/Reports/RequestLogs/{id}
Gets the request log with the supplied request log id.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The request log id. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The request log.
ESignSystems.SmartSAFE.Models.SmartRegistry.RequestLogModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ERegistryRequestLogId |
Gets or set the request log identifier |
integer |
Required |
| TransactionType |
Gets or sets the transaction type of the request |
string |
None. |
| RequestType |
Gets or set the request type |
string |
None. |
| RequestDate |
Gets or sets the date the request was made |
date |
None. |
| RequestData |
Gets or sets the XML of the request |
string |
None. |
| ResponseData |
Gets or sets the XML of the response |
string |
None. |
| ResponseStatusCode |
Gets or sets the status code of the response |
string |
None. |
| ServiceUrl |
Gets or sets the URL the request was sent to |
string |
None. |
| Error |
Gets or sets whether or not an error occurred in the request |
boolean |
None. |
| ErrorMessage |
Gets or sets the message of the error |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ERegistryRequestLogId": 1,
"TransactionType": "sample string 1",
"RequestType": "sample string 2",
"RequestDate": "2025-12-12T21:09:51.9507132-05:00",
"RequestData": "sample string 4",
"ResponseData": "sample string 5",
"ResponseStatusCode": "sample string 6",
"ServiceUrl": "sample string 7",
"Error": true,
"ErrorMessage": "sample string 9"
}
application/xml, text/xml
Sample:
<RequestLogModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.SmartRegistry"> <ERegistryRequestLogId>1</ERegistryRequestLogId> <Error>true</Error> <ErrorMessage>sample string 9</ErrorMessage> <RequestData>sample string 4</RequestData> <RequestDate>2025-12-12T21:09:51.9507132-05:00</RequestDate> <RequestType>sample string 2</RequestType> <ResponseData>sample string 5</ResponseData> <ResponseStatusCode>sample string 6</ResponseStatusCode> <ServiceUrl>sample string 7</ServiceUrl> <TransactionType>sample string 1</TransactionType> </RequestLogModel>