GET api/ChainOfTitle/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ChainOfTitleData| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| OrderID | integer |
None. |
|
| DeedType | integer |
None. |
|
| Consideration | decimal number |
None. |
|
| ConsiderationText | string |
None. |
|
| Grantee | string |
None. |
|
| Grantor | string |
None. |
|
| DeedAttached | boolean |
None. |
|
| RecDate | date |
None. |
|
| Rec | string |
None. |
|
| BookPage | string |
None. |
|
| Instrument | string |
None. |
|
| Comments | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"OrderID": 2,
"DeedType": 3,
"Consideration": 4.0,
"ConsiderationText": "sample string 5",
"Grantee": "sample string 6",
"Grantor": "sample string 7",
"DeedAttached": true,
"RecDate": "2026-02-10T16:14:52.6678605-08:00",
"Rec": "sample string 9",
"BookPage": "sample string 10",
"Instrument": "sample string 11",
"Comments": "sample string 12"
}
text/xml
Sample:
<ChainOfTitleData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAS.DAL"> <BookPage>sample string 10</BookPage> <Comments>sample string 12</Comments> <Consideration>4</Consideration> <ConsiderationText>sample string 5</ConsiderationText> <DeedAttached>true</DeedAttached> <DeedType>3</DeedType> <Grantee>sample string 6</Grantee> <Grantor>sample string 7</Grantor> <ID>1</ID> <Instrument>sample string 11</Instrument> <OrderID>2</OrderID> <Rec>sample string 9</Rec> <RecDate>2026-02-10T16:14:52.6678605-08:00</RecDate> </ChainOfTitleData>