GET api/DeedOfTrust/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

DeedOfTrustData
NameDescriptionTypeAdditional information
ID

integer

None.

OrderID

integer

None.

MortgageType

integer

None.

Mortgagor

string

None.

Mortgagee

string

None.

Trustee

string

None.

DeedDate

date

None.

DeedRec

date

None.

BookPage

string

None.

Instrument

string

None.

Amount

decimal number

None.

CloseEnd

integer

None.

MaturityDate

date

None.

Comments

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "OrderID": 2,
  "MortgageType": 3,
  "Mortgagor": "sample string 4",
  "Mortgagee": "sample string 5",
  "Trustee": "sample string 6",
  "DeedDate": "2026-02-10T16:15:07.7137287-08:00",
  "DeedRec": "2026-02-10T16:15:07.7137287-08:00",
  "BookPage": "sample string 7",
  "Instrument": "sample string 8",
  "Amount": 9.0,
  "CloseEnd": 10,
  "MaturityDate": "2026-02-10T16:15:07.7137287-08:00",
  "Comments": "sample string 11"
}

text/xml

Sample:
<DeedOfTrustData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAS.DAL">
  <Amount>9</Amount>
  <BookPage>sample string 7</BookPage>
  <CloseEnd>10</CloseEnd>
  <Comments>sample string 11</Comments>
  <DeedDate>2026-02-10T16:15:07.7137287-08:00</DeedDate>
  <DeedRec>2026-02-10T16:15:07.7137287-08:00</DeedRec>
  <ID>1</ID>
  <Instrument>sample string 8</Instrument>
  <MaturityDate>2026-02-10T16:15:07.7137287-08:00</MaturityDate>
  <MortgageType>3</MortgageType>
  <Mortgagee>sample string 5</Mortgagee>
  <Mortgagor>sample string 4</Mortgagor>
  <OrderID>2</OrderID>
  <Trustee>sample string 6</Trustee>
</DeedOfTrustData>