GET api/SmartRegistry/Lookups/RequestSubActionTypes
Gets a list of all the request sub action types.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
List of all request sub action types.
Collection of ESignSystems.SmartSAFE.Models.SmartRegistry.MERSRequestSubActionTypeModel| Name | Description | Type | Additional information |
|---|---|---|---|
| LookupValue |
Gets or sets the lookup value of the MERS request sub action type. |
string |
None. |
| MERSRequestActionTypeId |
Gets or sets the identifier of the MERS request action type that is the parent of this sub action type. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"LookupValue": "sample string 1",
"MERSRequestActionTypeId": 1
},
{
"LookupValue": "sample string 1",
"MERSRequestActionTypeId": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfMERSRequestSubActionTypeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.SmartRegistry">
<MERSRequestSubActionTypeModel>
<LookupValue>sample string 1</LookupValue>
<MERSRequestActionTypeId>1</MERSRequestActionTypeId>
</MERSRequestSubActionTypeModel>
<MERSRequestSubActionTypeModel>
<LookupValue>sample string 1</LookupValue>
<MERSRequestActionTypeId>1</MERSRequestActionTypeId>
</MERSRequestSubActionTypeModel>
</ArrayOfMERSRequestSubActionTypeModel>