GET api/SmartRegistry/Lookups/MERSStatusTypes

Gets the list of MERS status types.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ESignSystems.SmartSAFE.Models.SmartRegistry.MERSRequestStatusTypeModel
NameDescriptionTypeAdditional information
MERSRequestStatusTypeId

Gets or sets the identifier of the MERS request status type.

integer

None.

LookupValue

Gets or sets the lookup value of the MERS request status type.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "MERSRequestStatusTypeId": 1,
    "LookupValue": "sample string 1"
  },
  {
    "MERSRequestStatusTypeId": 1,
    "LookupValue": "sample string 1"
  }
]

application/xml, text/xml

Sample:
<ArrayOfMERSRequestStatusTypeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.SmartRegistry">
  <MERSRequestStatusTypeModel>
    <LookupValue>sample string 1</LookupValue>
    <MERSRequestStatusTypeId>1</MERSRequestStatusTypeId>
  </MERSRequestStatusTypeModel>
  <MERSRequestStatusTypeModel>
    <LookupValue>sample string 1</LookupValue>
    <MERSRequestStatusTypeId>1</MERSRequestStatusTypeId>
  </MERSRequestStatusTypeModel>
</ArrayOfMERSRequestStatusTypeModel>