POST api/SmartRegistry/Reports/eNoteReconciliation/Download

Download a CSV file of eNote reconciliation data based on the search criteria.

Request Information

URI Parameters

None.

Body Parameters

Criteria for searching the eNote reconciliation data.

ESignSystems.SmartSAFE.Models.SmartRegistry.Reports.ENoteReconciliationSearchCriteria
NameDescriptionTypeAdditional information
ClientId

Gets or sets the client identifier.

integer

None.

MIN

Gets or sets the MIN.

string

None.

ControllerMERSOrgId

Gets or sets the controller MERS organization identifier.

string

None.

LocationMERSOrgId

Gets or sets the location MERS organization identifier.

string

None.

ServicerMERSOrgId

Gets or sets the servicer MERS organization identifier.

string

None.

SubservicerMERSOrgId

Gets or sets the subservicer MERS organization identifier.

string

None.

SecuredPartyMERSOrgId

Gets or sets the secured party MERS organization identifier.

string

None.

SecuredPartyDelegateeMERSOrgId

Gets or sets the secured party delegatee MERS organization identifier.

string

None.

DelegateeForTransfersMERSOrgId

Gets or sets the delegatee for transfers MERS organization identifier.

string

None.

BorrowerFirstName

Gets or sets the borrower first name.

string

None.

BorrowerLastName

Gets or sets the borrower last name.

string

None.

CreatedStartDate

Gets or sets the created start date.

date

Required

CreatedEndDate

Gets or sets the created end date.

date

Required

PageSize

Gets or sets the number of rows in the page.

integer

Range: inclusive between 1 and 2147483647

PageOffset

Gets or sets the offset page to return.

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ClientId": 1,
  "MIN": "sample string 1",
  "ControllerMERSOrgId": "sample string 2",
  "LocationMERSOrgId": "sample string 3",
  "ServicerMERSOrgId": "sample string 4",
  "SubservicerMERSOrgId": "sample string 5",
  "SecuredPartyMERSOrgId": "sample string 6",
  "SecuredPartyDelegateeMERSOrgId": "sample string 7",
  "DelegateeForTransfersMERSOrgId": "sample string 8",
  "BorrowerFirstName": "sample string 9",
  "BorrowerLastName": "sample string 10",
  "CreatedStartDate": "2024-11-26T17:11:05.2837225-05:00",
  "CreatedEndDate": "2024-11-26T17:11:05.2837225-05:00",
  "PageSize": 1,
  "PageOffset": 11
}

application/xml, text/xml

Sample:
<ENoteReconciliationSearchCriteria xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.SmartRegistry.Reports">
  <PageOffset xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models">11</PageOffset>
  <PageSize xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models">1</PageSize>
  <BorrowerFirstName>sample string 9</BorrowerFirstName>
  <BorrowerLastName>sample string 10</BorrowerLastName>
  <ClientId>1</ClientId>
  <ControllerMERSOrgId>sample string 2</ControllerMERSOrgId>
  <CreatedEndDate>2024-11-26T17:11:05.2837225-05:00</CreatedEndDate>
  <CreatedStartDate>2024-11-26T17:11:05.2837225-05:00</CreatedStartDate>
  <DelegateeForTransfersMERSOrgId>sample string 8</DelegateeForTransfersMERSOrgId>
  <LocationMERSOrgId>sample string 3</LocationMERSOrgId>
  <MIN>sample string 1</MIN>
  <SecuredPartyDelegateeMERSOrgId>sample string 7</SecuredPartyDelegateeMERSOrgId>
  <SecuredPartyMERSOrgId>sample string 6</SecuredPartyMERSOrgId>
  <ServicerMERSOrgId>sample string 4</ServicerMERSOrgId>
  <SubservicerMERSOrgId>sample string 5</SubservicerMERSOrgId>
</ENoteReconciliationSearchCriteria>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

The CSV file of reconciliation data.

ESignSystems.SmartSAFE.Models.Shared.FileDownloadModel
NameDescriptionTypeAdditional information
File

Gets or sets the file to be downloaded.

Collection of byte

None.

FileName

Gets or sets the name of the file to be downloaded.

string

None.

MimeType

Gets or sets the mime type of the file to be downloaded.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "File": "QEA=",
  "FileName": "sample string 1",
  "MimeType": "sample string 2"
}

application/xml, text/xml

Sample:
<FileDownloadModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Shared">
  <File>QEA=</File>
  <FileName>sample string 1</FileName>
  <MimeType>sample string 2</MimeType>
</FileDownloadModel>