POST api/DeedInfo

Request Information

URI Parameters

None.

Body Parameters

DeedInfoData
NameDescriptionTypeAdditional 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.

DeedDate

date

None.

DeedRec

date

None.

BookPage

string

None.

Instrument

string

None.

Comments

string

None.

Request 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,
  "DeedDate": "2026-02-10T16:13:24.5377071-08:00",
  "DeedRec": "2026-02-10T16:13:24.5377071-08:00",
  "BookPage": "sample string 9",
  "Instrument": "sample string 10",
  "Comments": "sample string 11"
}

text/xml

Sample:
<DeedInfoData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAS.DAL">
  <BookPage>sample string 9</BookPage>
  <Comments>sample string 11</Comments>
  <Consideration>4</Consideration>
  <ConsiderationText>sample string 5</ConsiderationText>
  <DeedAttached>true</DeedAttached>
  <DeedDate>2026-02-10T16:13:24.5377071-08:00</DeedDate>
  <DeedRec>2026-02-10T16:13:24.5377071-08:00</DeedRec>
  <DeedType>3</DeedType>
  <Grantee>sample string 6</Grantee>
  <Grantor>sample string 7</Grantor>
  <ID>1</ID>
  <Instrument>sample string 10</Instrument>
  <OrderID>2</OrderID>
</DeedInfoData>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'DeedInfoData'.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.