GET api/SmartRegistry/Lookups/ERegistryNotificationTransactionTypes
Gets the list of eRegistry notification transaction request types.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of ESignSystems.SmartSAFE.Models.SmartRegistry.NotificationTransactionTypeModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ERegistryNotificationTransactionTypeId |
Gets or sets the identifier of the eRegistry notification transaction type. |
integer |
None. |
| ERegistryRequestTypeId |
Gets or sets the identifier of the eRegistry request type. |
integer |
None. |
| LookupValue |
Gets or sets the lookup value of the eRegistry request type. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ERegistryNotificationTransactionTypeId": 1,
"ERegistryRequestTypeId": 1,
"LookupValue": "sample string 2"
},
{
"ERegistryNotificationTransactionTypeId": 1,
"ERegistryRequestTypeId": 1,
"LookupValue": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfNotificationTransactionTypeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.SmartRegistry">
<NotificationTransactionTypeModel>
<ERegistryNotificationTransactionTypeId>1</ERegistryNotificationTransactionTypeId>
<ERegistryRequestTypeId>1</ERegistryRequestTypeId>
<LookupValue>sample string 2</LookupValue>
</NotificationTransactionTypeModel>
<NotificationTransactionTypeModel>
<ERegistryNotificationTransactionTypeId>1</ERegistryNotificationTransactionTypeId>
<ERegistryRequestTypeId>1</ERegistryRequestTypeId>
<LookupValue>sample string 2</LookupValue>
</NotificationTransactionTypeModel>
</ArrayOfNotificationTransactionTypeModel>