POST api/SmartRegistry/eNote/Transfer/MIN

Provides the ability to transfer an eNote without access to the document.

Request Information

URI Parameters

None.

Body Parameters

The transfer without eNote model.

ESignSystems.SmartSAFE.Models.SmartRegistry.TransferWithoutENoteModel
NameDescriptionTypeAdditional information
MIN

Gets or sets the MIN.

string

String length: inclusive between 0 and 18

ControllerMERSOrgId

Gets or sets the controller MERS organization identifier.

string

None.

ServicerMERSOrgId

Gets or sets the servicer MERS organization identifier.

string

None.

LocationMERSOrgId

Gets or sets the location MERS organization identifier.

string

None.

SubservicerMERSOrgId

Gets or sets the subservicer MERS organization identifier.

string

None.

SecuredPartyDelegateeMERSOrgId

Gets or sets the secured party delegatee MERS organization identifier.

string

None.

SecuredPartyMERSOrgId

Gets or sets the secured party MERS organization identifier.

string

None.

DelegateeForTransfersMERSOrgId

Gets or sets the delegatee for transfer MERS organization identifier.

string

None.

CounterPartyMERSOrgId

Gets or sets the counter party MERS organization identifier.

string

None.

MersTransferRequestTypeId

Gets or sets the MERS transfer request type identifier.

integer

None.

TransferEffectiveDate

Gets or sets the transfer effective data.

date

Required

ClientId

Gets or sets the client identifier.

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "MIN": "sample string 1",
  "ControllerMERSOrgId": "sample string 2",
  "ServicerMERSOrgId": "sample string 3",
  "LocationMERSOrgId": "sample string 4",
  "SubservicerMERSOrgId": "sample string 5",
  "SecuredPartyDelegateeMERSOrgId": "sample string 6",
  "SecuredPartyMERSOrgId": "sample string 7",
  "DelegateeForTransfersMERSOrgId": "sample string 8",
  "CounterPartyMERSOrgId": "sample string 9",
  "MersTransferRequestTypeId": 10,
  "TransferEffectiveDate": "2024-11-26T17:21:17.0591954-05:00",
  "ClientId": 1
}

application/xml, text/xml

Sample:
<TransferWithoutENoteModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.SmartRegistry">
  <ClientId>1</ClientId>
  <ControllerMERSOrgId>sample string 2</ControllerMERSOrgId>
  <CounterPartyMERSOrgId>sample string 9</CounterPartyMERSOrgId>
  <DelegateeForTransfersMERSOrgId>sample string 8</DelegateeForTransfersMERSOrgId>
  <LocationMERSOrgId>sample string 4</LocationMERSOrgId>
  <MersTransferRequestTypeId>10</MersTransferRequestTypeId>
  <SecuredPartyDelegateeMERSOrgId>sample string 6</SecuredPartyDelegateeMERSOrgId>
  <SecuredPartyMERSOrgId>sample string 7</SecuredPartyMERSOrgId>
  <ServicerMERSOrgId>sample string 3</ServicerMERSOrgId>
  <SubservicerMERSOrgId>sample string 5</SubservicerMERSOrgId>
  <TransferEffectiveDate>2024-11-26T17:21:17.0591954-05:00</TransferEffectiveDate>
  <MIN>sample string 1</MIN>
</TransferWithoutENoteModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ESignSystems.ERegistry.Models.ResponseModel
NameDescriptionTypeAdditional information
MIN

string

None.

DocumentName

string

None.

Success

boolean

None.

ResponseMessages

Collection of ESignSystems.ERegistry.Models.ResponseMessageModel

None.

Response Formats

application/json, text/json

Sample:
{
  "MIN": "sample string 1",
  "DocumentName": "sample string 2",
  "Success": true,
  "ResponseMessages": [
    {
      "MIN": "sample string 1",
      "StatusCode": "sample string 2",
      "StatusName": "sample string 3",
      "StatusDescription": "sample string 4",
      "Success": true,
      "TransferIdentifier": "sample string 6",
      "TrackingNumber": "sample string 7",
      "Error": true
    },
    {
      "MIN": "sample string 1",
      "StatusCode": "sample string 2",
      "StatusName": "sample string 3",
      "StatusDescription": "sample string 4",
      "Success": true,
      "TransferIdentifier": "sample string 6",
      "TrackingNumber": "sample string 7",
      "Error": true
    }
  ]
}

application/xml, text/xml

Sample:
<ResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.ERegistry.Models">
  <DocumentName>sample string 2</DocumentName>
  <MIN>sample string 1</MIN>
  <ResponseMessages>
    <ResponseMessageModel>
      <Error>true</Error>
      <MIN>sample string 1</MIN>
      <StatusCode>sample string 2</StatusCode>
      <StatusDescription>sample string 4</StatusDescription>
      <StatusName>sample string 3</StatusName>
      <Success>true</Success>
      <TrackingNumber>sample string 7</TrackingNumber>
      <TransferIdentifier>sample string 6</TransferIdentifier>
    </ResponseMessageModel>
    <ResponseMessageModel>
      <Error>true</Error>
      <MIN>sample string 1</MIN>
      <StatusCode>sample string 2</StatusCode>
      <StatusDescription>sample string 4</StatusDescription>
      <StatusName>sample string 3</StatusName>
      <Success>true</Success>
      <TrackingNumber>sample string 7</TrackingNumber>
      <TransferIdentifier>sample string 6</TransferIdentifier>
    </ResponseMessageModel>
  </ResponseMessages>
  <Success>true</Success>
</ResponseModel>