POST api/cd/v1/parcel/AddParcelOwnerHistory
Returns Parcel Owner History ID and Adds the parcelOwnerHistoryInfo to the ParcelOwnerHistory table for the ProcessChanges Method in The Parcel Import Tool.
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
parcelOwnerHistoryInfo | Object that contains parameters for adding parcel owner history |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{ "ParcelId": 1, "TransferDate": "sample string 2", "TransferType": 3, "TransferPrice": 4.0, "TransferDeedNumber": "sample string 5", "DeedBook": "sample string 6", "DeedBookPage": "sample string 7", "CentralNameId": 8, "PercentageOwnership": 9.0, "AddressLineOne": "sample string 10", "AddressLineTwo": "sample string 11", "City": "sample string 12", "State": "sample string 13", "Zip": "sample string 14" }
application/xml, text/xml
Sample:
<AddParcelOwnerHistoryParameters xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NewWorld.Logos.CD.Models.Parcels"> <AddressLineOne>sample string 10</AddressLineOne> <AddressLineTwo>sample string 11</AddressLineTwo> <CentralNameId>8</CentralNameId> <City>sample string 12</City> <DeedBook>sample string 6</DeedBook> <DeedBookPage>sample string 7</DeedBookPage> <ParcelId>1</ParcelId> <PercentageOwnership>9</PercentageOwnership> <State>sample string 13</State> <TransferDate>sample string 2</TransferDate> <TransferDeedNumber>sample string 5</TransferDeedNumber> <TransferPrice>4</TransferPrice> <TransferType>3</TransferType> <Zip>sample string 14</Zip> </AddParcelOwnerHistoryParameters>
Response Information
Parcel Owner History ID
Response body formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.