GET api/SmartRegistry/Lookups/ERegistryRequestTypes
Gets the list of eRegistry request types.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of ESignSystems.SmartSAFE.Models.SmartRegistry.ERegistryRequestTypeModelName | Description | Type | Additional information |
---|---|---|---|
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:
[ { "ERegistryRequestTypeId": 1, "LookupValue": "sample string 1" }, { "ERegistryRequestTypeId": 1, "LookupValue": "sample string 1" } ]
application/xml, text/xml
Sample:
<ArrayOfERegistryRequestTypeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.SmartRegistry"> <ERegistryRequestTypeModel> <ERegistryRequestTypeId>1</ERegistryRequestTypeId> <LookupValue>sample string 1</LookupValue> </ERegistryRequestTypeModel> <ERegistryRequestTypeModel> <ERegistryRequestTypeId>1</ERegistryRequestTypeId> <LookupValue>sample string 1</LookupValue> </ERegistryRequestTypeModel> </ArrayOfERegistryRequestTypeModel>