GET api/ClientManagement/Clients/MERSInformation
Gets the organization MERS information.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
The list of client MERS information.
Collection of ESignSystems.SmartSAFE.Models.ClientManagement.ClientMERSInformationModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientId |
Gets or sets the client identifier. |
integer |
None. |
| ClientName |
Gets or sets the name of the client. |
string |
None. |
| MERSOrgId |
Gets or sets the mers org identifier. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ClientId": 1,
"ClientName": "sample string 1",
"MERSOrgId": "sample string 2"
},
{
"ClientId": 1,
"ClientName": "sample string 1",
"MERSOrgId": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfClientMERSInformationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.ClientManagement">
<ClientMERSInformationModel>
<ClientId>1</ClientId>
<ClientName>sample string 1</ClientName>
<MERSOrgId>sample string 2</MERSOrgId>
</ClientMERSInformationModel>
<ClientMERSInformationModel>
<ClientId>1</ClientId>
<ClientName>sample string 1</ClientName>
<MERSOrgId>sample string 2</MERSOrgId>
</ClientMERSInformationModel>
</ArrayOfClientMERSInformationModel>