POST api/SmartRegistry/ClientMERSMembers
Saves the client MERS member.
Request Information
URI Parameters
None.
Body Parameters
ClientMERSMember to save.
ESignSystems.SmartSAFE.Models.SmartRegistry.ClientMERSMemberModelName | Description | Type | Additional information |
---|---|---|---|
ClientMERSMemberAccounts |
Gets or sets the list of client MERS member accounts. |
Collection of ESignSystems.SmartSAFE.Models.SmartRegistry.ClientMERSMemberAccountModel |
None. |
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. |
Request Formats
application/json, text/json
{ "ClientMERSMemberAccounts": [ { "ClientMERSMemberAccountId": 1, "AccountId": "sample string 1" }, { "ClientMERSMemberAccountId": 1, "AccountId": "sample string 1" } ], "ClientMERSMemberId": 1, "ClientId": 1, "MERSOrgId": "sample string 1", "MERSOrgName": "sample string 2", "AutoAcceptForTransfer": true, "AutoAcceptForEDelivery": true, "RejectTransfersWithoutENote": true, "Active": true }
application/xml, text/xml
<ClientMERSMemberModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.SmartRegistry"> <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> <ClientMERSMemberAccounts> <ClientMERSMemberAccountModel> <AccountId>sample string 1</AccountId> <ClientMERSMemberAccountId>1</ClientMERSMemberAccountId> </ClientMERSMemberAccountModel> <ClientMERSMemberAccountModel> <AccountId>sample string 1</AccountId> <ClientMERSMemberAccountId>1</ClientMERSMemberAccountId> </ClientMERSMemberAccountModel> </ClientMERSMemberAccounts> </ClientMERSMemberModel>
application/x-www-form-urlencoded
Sample not available.
Response Information
Resource Description
Result of saving the MERS member
System.Web.Http.IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample not available.