POST api/properties/{propertyAddressId}/referrals/attorneys/{attorneyId}/appeal-request
This method should be used to submitt appeal filing contact request to attorneys who use our network
Requires Authorization!
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| propertyAddressId |
Property Address Id |
integer |
Required |
| attorneyId |
User Id of attorney |
integer |
Required |
Body Parameters
Instance of
AppealFilingContactRequestBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| TargetAppealTypeIds | Collection of integer |
None. |
|
| PurchasePrice | decimal number |
None. |
|
| PurchaseDate | date |
None. |
|
| IsPropertyDescriptionCorrect | boolean |
None. |
|
| AppraisedValue | decimal number |
None. |
|
| AppraisalDate | date |
None. |
|
| NextAppealDate | date |
None. |
|
| AppealAgency | string |
None. |
|
| FairTaxAmount | decimal number |
None. |
|
| GrossTaxAmount | decimal number |
None. |
|
| AffiliateCode | string |
None. |
|
| CallbackPhoneNumber | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"targetAppealTypeIds": [
1,
2
],
"purchasePrice": 1.1,
"purchaseDate": "2025-11-01T05:57:45.2218484-05:00",
"isPropertyDescriptionCorrect": true,
"appraisedValue": 1.1,
"appraisalDate": "2025-11-01T05:57:45.2218484-05:00",
"nextAppealDate": "2025-11-01T05:57:45.2218484-05:00",
"appealAgency": "sample string 5",
"fairTaxAmount": 6.1,
"grossTaxAmount": 7.1,
"affiliateCode": "sample string 8",
"callbackPhoneNumber": "sample string 9"
}
text/html
Sample:
{"targetAppealTypeIds":[1,2],"purchasePrice":1.1,"purchaseDate":"2025-11-01T05:57:45.2218484-05:00","isPropertyDescriptionCorrect":true,"appraisedValue":1.1,"appraisalDate":"2025-11-01T05:57:45.2218484-05:00","nextAppealDate":"2025-11-01T05:57:45.2218484-05:00","appealAgency":"sample string 5","fairTaxAmount":6.1,"grossTaxAmount":7.1,"affiliateCode":"sample string 8","callbackPhoneNumber":"sample string 9"}
application/xml, text/xml
Sample:
<AppealFilingContactRequestBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.WebModels.ReferrerBinding">
<AffiliateCode>sample string 8</AffiliateCode>
<AppealAgency>sample string 5</AppealAgency>
<AppraisalDate>2025-11-01T05:57:45.2218484-05:00</AppraisalDate>
<AppraisedValue>1.1</AppraisedValue>
<CallbackPhoneNumber>sample string 9</CallbackPhoneNumber>
<FairTaxAmount>6.1</FairTaxAmount>
<GrossTaxAmount>7.1</GrossTaxAmount>
<IsPropertyDescriptionCorrect>true</IsPropertyDescriptionCorrect>
<NextAppealDate>2025-11-01T05:57:45.2218484-05:00</NextAppealDate>
<PurchaseDate>2025-11-01T05:57:45.2218484-05:00</PurchaseDate>
<PurchasePrice>1.1</PurchasePrice>
<TargetAppealTypeIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</TargetAppealTypeIds>
</AppealFilingContactRequestBindingModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
True/False
booleanResponse Formats
application/json, text/json, text/html
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>