POST api/Property/BriefLegalTypeAheadSearchString
Request Information
URI Parameters
None.
Body Parameters
LegalSearchTypeAheadRequestName | Description | Type | Additional information |
---|---|---|---|
StateCode | string |
None. |
|
CountyFips | string |
None. |
|
Search | string |
None. |
|
CheckSynonyms | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "StateCode": "sample string 1", "CountyFips": "sample string 2", "Search": "sample string 3", "CheckSynonyms": true }
application/xml, text/xml
Sample:
<LegalSearchTypeAheadRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataTrace.TypeAheadSearch.Models"> <CheckSynonyms>true</CheckSynonyms> <CountyFips>sample string 2</CountyFips> <IsRequestValid>true</IsRequestValid> <Search>sample string 3</Search> <StateCode>sample string 1</StateCode> </LegalSearchTypeAheadRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GeoLegalSearchTypeAheadResponseName | Description | Type | Additional information |
---|---|---|---|
LegalDetails | Collection of GeoLegalMain |
None. |
|
ValidationMessages | Collection of ValidationMessage |
None. |
Response Formats
application/json, text/json
Sample:
{ "LegalDetails": [ { "STATE": "sample string 1", "FIPS_CODE": "sample string 2", "COUNTY_NAME": "sample string 3", "PROPERTY_REF_ID": "sample string 4", "LEGAL_ID": "sample string 5", "SUBDIVIDED_ATTRIBUTE_STRING": "sample string 6", "rid": "sample string 7" }, { "STATE": "sample string 1", "FIPS_CODE": "sample string 2", "COUNTY_NAME": "sample string 3", "PROPERTY_REF_ID": "sample string 4", "LEGAL_ID": "sample string 5", "SUBDIVIDED_ATTRIBUTE_STRING": "sample string 6", "rid": "sample string 7" } ], "ValidationMessages": [ { "Message": "sample string 1" }, { "Message": "sample string 1" } ] }
application/xml, text/xml
Sample:
<GeoLegalSearchTypeAheadResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataTrace.TypeAheadSearch.Models"> <IsExceptioned>true</IsExceptioned> <IsValidRequest>true</IsValidRequest> <LegalDetails> <GeoLegalMain> <CombinedGeoLegal>sample string 6</CombinedGeoLegal> <CountyFips>sample string 2</CountyFips> <CountyName>sample string 3</CountyName> <LEGALID>sample string 5</LEGALID> <PropertyId>sample string 4</PropertyId> <StateCode>sample string 1</StateCode> <rid>sample string 7</rid> </GeoLegalMain> <GeoLegalMain> <CombinedGeoLegal>sample string 6</CombinedGeoLegal> <CountyFips>sample string 2</CountyFips> <CountyName>sample string 3</CountyName> <LEGALID>sample string 5</LEGALID> <PropertyId>sample string 4</PropertyId> <StateCode>sample string 1</StateCode> <rid>sample string 7</rid> </GeoLegalMain> </LegalDetails> <ValidationMessages> <ValidationMessage> <Message>sample string 1</Message> </ValidationMessage> <ValidationMessage> <Message>sample string 1</Message> </ValidationMessage> </ValidationMessages> </GeoLegalSearchTypeAheadResponse>