POST api/analysis/{propertyAddressId}/analysis/email-results
This method will e-mail analysis results for a specific property to end user using e-mail he specifies on the screen
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| propertyAddressId |
Property address id |
integer |
Required |
Body Parameters
Instance of
EmailAnalysisResultsBindingModel| Name | Description | Type | Additional information |
|---|---|---|---|
| string |
None. |
||
| FullPropertyAddress | string |
None. |
|
| CountyName | string |
None. |
|
| TownshipName | string |
None. |
|
| TaxYear | integer |
None. |
|
| ActualTaxAmount | decimal number |
None. |
|
| FairTaxAmount | decimal number |
None. |
|
| OverpaymentAmount | decimal number |
None. |
|
| NextAppealDate | string |
None. |
|
| AppealAgency | string |
None. |
|
| Pin | string |
None. |
|
| IsBuyer | boolean |
None. |
|
| PurchasePrice | decimal number |
None. |
|
| PurchaseDate | date |
None. |
|
| PropertyAppealTypeIds | Collection of integer |
None. |
|
| SendReport | boolean |
None. |
|
| SendReferral | boolean |
None. |
|
| ReferralAffiliateCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"email": "sample string 1",
"fullPropertyAddress": "sample string 2",
"countyName": "sample string 3",
"townshipName": "sample string 4",
"taxYear": 5,
"actualTaxAmount": 6.1,
"fairTaxAmount": 7.1,
"overpaymentAmount": 8.1,
"nextAppealDate": "sample string 9",
"appealAgency": "sample string 10",
"pin": "sample string 11",
"isBuyer": true,
"purchasePrice": 13.1,
"purchaseDate": "2025-12-15T21:33:36.5174036-06:00",
"propertyAppealTypeIds": [
1,
2
],
"sendReport": true,
"sendReferral": true,
"referralAffiliateCode": "sample string 17"
}
text/html
Sample:
{"email":"sample string 1","fullPropertyAddress":"sample string 2","countyName":"sample string 3","townshipName":"sample string 4","taxYear":5,"actualTaxAmount":6.1,"fairTaxAmount":7.1,"overpaymentAmount":8.1,"nextAppealDate":"sample string 9","appealAgency":"sample string 10","pin":"sample string 11","isBuyer":true,"purchasePrice":13.1,"purchaseDate":"2025-12-15T21:33:36.5174036-06:00","propertyAppealTypeIds":[1,2],"sendReport":true,"sendReferral":true,"referralAffiliateCode":"sample string 17"}
application/xml, text/xml
Sample:
<EmailAnalysisResultsBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.WebModels.AnalysisBinding">
<ActualTaxAmount>6.1</ActualTaxAmount>
<AppealAgency>sample string 10</AppealAgency>
<CountyName>sample string 3</CountyName>
<Email>sample string 1</Email>
<FairTaxAmount>7.1</FairTaxAmount>
<FullPropertyAddress>sample string 2</FullPropertyAddress>
<IsBuyer>true</IsBuyer>
<NextAppealDate>sample string 9</NextAppealDate>
<OverpaymentAmount>8.1</OverpaymentAmount>
<Pin>sample string 11</Pin>
<PropertyAppealTypeIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:int>1</d2p1:int>
<d2p1:int>2</d2p1:int>
</PropertyAppealTypeIds>
<PurchaseDate>2025-12-15T21:33:36.5174036-06:00</PurchaseDate>
<PurchasePrice>13.1</PurchasePrice>
<ReferralAffiliateCode>sample string 17</ReferralAffiliateCode>
<SendReferral>true</SendReferral>
<SendReport>true</SendReport>
<TaxYear>5</TaxYear>
<TownshipName>sample string 4</TownshipName>
</EmailAnalysisResultsBindingModel>
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>