POST api/SmartRegistry/Settings

Saves the registry settings.

Request Information

URI Parameters

None.

Body Parameters

The settings to save.

ESignSystems.SmartSAFE.Models.SmartRegistry.SmartRegistrySettingsModel
NameDescriptionTypeAdditional information
SmartRegistrySettingsId

Gets or sets the smart registry settings identifier.

integer

None.

MERSCertificateSubjectName

Gets or sets the subject name to sign the MERS Certificate

string

Max length: 256

MERSeRegistryUrl

Gets or sets the URL for the MERS eRegistry

string

Max length: 256

MERSeDeliveryUrl

Gets or sets the URL for the MERS eDelivery

string

Max length: 256

MERSOrgName

Gets or sets the MERS Org Name

string

Max length: 256

MERSOrgId

Gets or sets the MERS Org Id

string

Max length: 7

OrgRegistrationServiceUrl

Gets or sets the url used to register orgs.

string

Required

Max length: 256

NotificationServiceUrl

Gets or sets the url that will be sent on org registration that will be used to receive MERS notification Mmssages.

string

Required

Max length: 256

Request Formats

application/json, text/json

Sample:
{
  "SmartRegistrySettingsId": 1,
  "MERSCertificateSubjectName": "sample string 1",
  "MERSeRegistryUrl": "sample string 2",
  "MERSeDeliveryUrl": "sample string 3",
  "MERSOrgName": "sample string 4",
  "MERSOrgId": "sample string 5",
  "OrgRegistrationServiceUrl": "sample string 6",
  "NotificationServiceUrl": "sample string 7"
}

application/xml, text/xml

Sample:
<SmartRegistrySettingsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.SmartRegistry">
  <MERSCertificateSubjectName>sample string 1</MERSCertificateSubjectName>
  <MERSOrgId>sample string 5</MERSOrgId>
  <MERSOrgName>sample string 4</MERSOrgName>
  <MERSeDeliveryUrl>sample string 3</MERSeDeliveryUrl>
  <MERSeRegistryUrl>sample string 2</MERSeRegistryUrl>
  <NotificationServiceUrl>sample string 7</NotificationServiceUrl>
  <OrgRegistrationServiceUrl>sample string 6</OrgRegistrationServiceUrl>
  <SmartRegistrySettingsId>1</SmartRegistrySettingsId>
</SmartRegistrySettingsModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Result of the operation.

System.Web.Http.IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.