GET api/SmartRegistry/ClientMERSMembers/Active/{clientId}?includeInactive={includeInactive}
Gets all active MERS members associated to the client.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
clientId |
Id of the client. |
integer |
Required |
includeInactive |
Indicates whether to include the inactive members. |
boolean |
Default value is False |
Body Parameters
None.
Response Information
Resource Description
List of active MERS members
Collection of ESignSystems.SmartSAFE.Models.SmartRegistry.BaseClientMERSMemberModelName | Description | Type | Additional information |
---|---|---|---|
ClientMERSMemberId |
Gets or sets the client MERS member identifier. |
integer |
None. |
ClientId |
Gets or sets the client id associated to the MERS member |
integer |
None. |
MERSOrgId |
Gets or sets the MERS Organization Id |
string |
Required Max length: 7 Min length: 7 |
MERSOrgName |
Gets or sets the MERS Organization name |
string |
Required Max length: 256 |
AutoAcceptForTransfer |
Gets or sets whether or not auto accept for transfer is set for this MERS organization |
boolean |
None. |
AutoAcceptForEDelivery |
Gets or sets whether or not auto accept for eDelivery is set for this MERS organization |
boolean |
None. |
RejectTransfersWithoutENote |
Gets or sets whether or not auto reject for transfer without eNote is set for this MERS organization |
boolean |
None. |
Active |
Gets or sets whether or not this MERS organization is active |
boolean |
None. |
Response Formats
application/json, text/json
[ { "ClientMERSMemberId": 1, "ClientId": 1, "MERSOrgId": "sample string 1", "MERSOrgName": "sample string 2", "AutoAcceptForTransfer": true, "AutoAcceptForEDelivery": true, "RejectTransfersWithoutENote": true, "Active": true }, { "ClientMERSMemberId": 1, "ClientId": 1, "MERSOrgId": "sample string 1", "MERSOrgName": "sample string 2", "AutoAcceptForTransfer": true, "AutoAcceptForEDelivery": true, "RejectTransfersWithoutENote": true, "Active": true } ]
application/xml, text/xml
<ArrayOfBaseClientMERSMemberModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.SmartRegistry"> <BaseClientMERSMemberModel> <Active>true</Active> <AutoAcceptForEDelivery>true</AutoAcceptForEDelivery> <AutoAcceptForTransfer>true</AutoAcceptForTransfer> <ClientId>1</ClientId> <ClientMERSMemberId>1</ClientMERSMemberId> <MERSOrgId>sample string 1</MERSOrgId> <MERSOrgName>sample string 2</MERSOrgName> <RejectTransfersWithoutENote>true</RejectTransfersWithoutENote> </BaseClientMERSMemberModel> <BaseClientMERSMemberModel> <Active>true</Active> <AutoAcceptForEDelivery>true</AutoAcceptForEDelivery> <AutoAcceptForTransfer>true</AutoAcceptForTransfer> <ClientId>1</ClientId> <ClientMERSMemberId>1</ClientMERSMemberId> <MERSOrgId>sample string 1</MERSOrgId> <MERSOrgName>sample string 2</MERSOrgName> <RejectTransfersWithoutENote>true</RejectTransfersWithoutENote> </BaseClientMERSMemberModel> </ArrayOfBaseClientMERSMemberModel>