POST api/cd/v1/parcel/AddParcelOwnerInfo
Adds a record to the ParcelOwnerInfo table for the ProcessChanges Method in The Parcel Import Tool.
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
parcelOwnerInfo | Object that contains parameters for adding parcel owner info |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{ "ParcelOwnerHistoryId": 1, "ParcelId": 2, "CentralNameId": 3, "AddressLineOne": "sample string 4", "AddressLineTwo": "sample string 5", "City": "sample string 6", "State": "sample string 7", "Zip": "sample string 8", "PercentageOwnership": 9.0 }
application/xml, text/xml
Sample:
<AddParcelOwnerInfoParameters xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NewWorld.Logos.CD.Models.Parcels"> <AddressLineOne>sample string 4</AddressLineOne> <AddressLineTwo>sample string 5</AddressLineTwo> <CentralNameId>3</CentralNameId> <City>sample string 6</City> <ParcelId>2</ParcelId> <ParcelOwnerHistoryId>1</ParcelOwnerHistoryId> <PercentageOwnership>9</PercentageOwnership> <State>sample string 7</State> <Zip>sample string 8</Zip> </AddParcelOwnerInfoParameters>
Response Information
A Successful Response if all goes well
Response body formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.