HTTP + XML
The following are sample HTTP requests and responses.
The placeholders shown need to be replaced with actual values.
POST /xml/reply/TaxRollSearchRequest HTTP/1.1
Host: taxcommapi.trendsic.net
Content-Type: application/xml
Content-Length: length
<TaxRollSearchRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
<Parish>0</Parish>
<SearchTerm>String</SearchTerm>
<SearchType>String</SearchType>
<TaxYear>0</TaxYear>
</TaxRollSearchRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<TaxRollSearchResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
<ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:Message>String</d2p1:Message>
<d2p1:StackTrace>String</d2p1:StackTrace>
<d2p1:Errors>
<d2p1:ResponseError>
<d2p1:ErrorCode>String</d2p1:ErrorCode>
<d2p1:FieldName>String</d2p1:FieldName>
<d2p1:Message>String</d2p1:Message>
</d2p1:ResponseError>
</d2p1:Errors>
</ResponseStatus>
<TaxRoll>
<TaxRoll>
<AssessmentNo>String</AssessmentNo>
<FipsCode>0</FipsCode>
<LegalDescription>String</LegalDescription>
<ParAddress>String</ParAddress>
<SequenceNos>String</SequenceNos>
<SubdivisionName>String</SubdivisionName>
<TaxYear>0</TaxYear>
<TaxpayerAddress1>String</TaxpayerAddress1>
<TaxpayerName>String</TaxpayerName>
</TaxRoll>
</TaxRoll>
</TaxRollSearchResponse>