GET api/SmartRegistry/Reports/NotificationLogs/{id}
Gets the Notification log with the supplied notification log id.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The notification log id. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The notification log.
ESignSystems.SmartSAFE.Models.SmartRegistry.NotificationLogModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ERegistryNotificationLogId |
Gets or sets the eRegistry notification log id. |
integer |
Required |
| NotificationRequestType |
Gets or sets the notification request type. |
string |
Max length: 256 |
| NotificationData |
Gets or sets the notification data. |
string |
None. |
| Processed |
Gets or sets the processed status. |
boolean |
None. |
| Error |
Gets or sets the error status. |
boolean |
None. |
| ErrorMessage |
Gets or sets the error message. |
string |
Max length: 256 |
| IPAddress |
Gets or sets the IPAddress. |
string |
Max length: 256 |
| ReceivedDate |
Gets or sets the received date. |
date |
Required |
Response Formats
application/json, text/json
Sample:
{
"ERegistryNotificationLogId": 1,
"NotificationRequestType": "sample string 1",
"NotificationData": "sample string 2",
"Processed": true,
"Error": true,
"ErrorMessage": "sample string 5",
"IPAddress": "sample string 6",
"ReceivedDate": "2025-12-12T21:09:45.2176116-05:00"
}
application/xml, text/xml
Sample:
<NotificationLogModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.SmartRegistry"> <ERegistryNotificationLogId>1</ERegistryNotificationLogId> <Error>true</Error> <ErrorMessage>sample string 5</ErrorMessage> <IPAddress>sample string 6</IPAddress> <NotificationData>sample string 2</NotificationData> <NotificationRequestType>sample string 1</NotificationRequestType> <Processed>true</Processed> <ReceivedDate>2025-12-12T21:09:45.2176116-05:00</ReceivedDate> </NotificationLogModel>