POST api/TaxServices/SearchByAddress
No documentation available.
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
request | No documentation available. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{ "Login": { "Username": "sample string 1", "Password": "sample string 2" }, "Address": "sample string 1", "City": "sample string 2", "State": "sample string 3", "ZipCode": "sample string 4", "ClientReferenceNumber": "sample string 5", "ClientOrderNumber": "sample string 6", "ClientName": "sample string 7", "ClientID": "sample string 8", "LoanNumber": "sample string 9", "TitleNumber": "sample string 10", "BuyerBorrowerName": "sample string 11", "SellerName": "sample string 12" }
application/xml, text/xml
Sample:
<SearchByAddressRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Westcor.TMPOH.Poco.TaxServicesObjects"> <Address>sample string 1</Address> <BuyerBorrowerName>sample string 11</BuyerBorrowerName> <City>sample string 2</City> <ClientID>sample string 8</ClientID> <ClientName>sample string 7</ClientName> <ClientOrderNumber>sample string 6</ClientOrderNumber> <ClientReferenceNumber>sample string 5</ClientReferenceNumber> <LoanNumber>sample string 9</LoanNumber> <Login> <Password>sample string 2</Password> <SerializeSensitiveInfo>true</SerializeSensitiveInfo> <Username>sample string 1</Username> </Login> <SellerName>sample string 12</SellerName> <State>sample string 3</State> <TitleNumber>sample string 10</TitleNumber> <ZipCode>sample string 4</ZipCode> </SearchByAddressRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Response body formats
application/json, text/json
Sample:
{ "ResponseInfo": { "Code": 1, "Message": "sample string 2" }, "ResultList": [ { "Address": "sample string 1", "ApartmentOrUnit": {}, "City": "sample string 3", "County": "sample string 4", "State": "sample string 5", "Zip": 6 }, { "Address": "sample string 1", "ApartmentOrUnit": {}, "City": "sample string 3", "County": "sample string 4", "State": "sample string 5", "Zip": 6 }, { "Address": "sample string 1", "ApartmentOrUnit": {}, "City": "sample string 3", "County": "sample string 4", "State": "sample string 5", "Zip": 6 } ], "OrderID": 1 }
application/xml, text/xml
Sample:
<SearchByAddressResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Westcor.TMPOH.Poco.TaxServicesObjects"> <OrderID>1</OrderID> <ResponseInfo> <Code>1</Code> <Message>sample string 2</Message> </ResponseInfo> <ResultList> <SearchByAddressProperty> <Address>sample string 1</Address> <ApartmentOrUnit /> <City>sample string 3</City> <County>sample string 4</County> <State>sample string 5</State> <Zip>6</Zip> </SearchByAddressProperty> <SearchByAddressProperty> <Address>sample string 1</Address> <ApartmentOrUnit /> <City>sample string 3</City> <County>sample string 4</County> <State>sample string 5</State> <Zip>6</Zip> </SearchByAddressProperty> <SearchByAddressProperty> <Address>sample string 1</Address> <ApartmentOrUnit /> <City>sample string 3</City> <County>sample string 4</County> <State>sample string 5</State> <Zip>6</Zip> </SearchByAddressProperty> </ResultList> </SearchByAddressResponse>