POST api/Property/LegalTypeAheadSearch

Request Information

URI Parameters

None.

Body Parameters

LegalSearchTypeAheadRequest
NameDescriptionTypeAdditional 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

LegalSearchTypeAheadResponse
NameDescriptionTypeAdditional information
LegalDetails

Collection of legalDetailsDTO

None.

ValidationMessages

Collection of ValidationMessage

None.

Response Formats

application/json, text/json

Sample:
{
  "LegalDetails": [
    {
      "DOC_UNIQUE_ID": "ae0d9297-5ef8-4839-a68b-9553499f07bf",
      "FIPS_CODE": 2,
      "COUNTY": 3,
      "STATE": "sample string 4",
      "COUNTY_NAME": "sample string 5",
      "PROPERTY_ATTRIBUTE_STRING": "sample string 6"
    },
    {
      "DOC_UNIQUE_ID": "ae0d9297-5ef8-4839-a68b-9553499f07bf",
      "FIPS_CODE": 2,
      "COUNTY": 3,
      "STATE": "sample string 4",
      "COUNTY_NAME": "sample string 5",
      "PROPERTY_ATTRIBUTE_STRING": "sample string 6"
    }
  ],
  "ValidationMessages": [
    {
      "Message": "sample string 1"
    },
    {
      "Message": "sample string 1"
    }
  ]
}

application/xml, text/xml

Sample:
<LegalSearchTypeAheadResponse 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>
    <legalDetailsDTO>
      <County>3</County>
      <CountyName>sample string 5</CountyName>
      <DocUniqueId>ae0d9297-5ef8-4839-a68b-9553499f07bf</DocUniqueId>
      <FipsCode>2</FipsCode>
      <PropertyAttributeString>sample string 6</PropertyAttributeString>
      <State>sample string 4</State>
    </legalDetailsDTO>
    <legalDetailsDTO>
      <County>3</County>
      <CountyName>sample string 5</CountyName>
      <DocUniqueId>ae0d9297-5ef8-4839-a68b-9553499f07bf</DocUniqueId>
      <FipsCode>2</FipsCode>
      <PropertyAttributeString>sample string 6</PropertyAttributeString>
      <State>sample string 4</State>
    </legalDetailsDTO>
  </LegalDetails>
  <ValidationMessages>
    <ValidationMessage>
      <Message>sample string 1</Message>
    </ValidationMessage>
    <ValidationMessage>
      <Message>sample string 1</Message>
    </ValidationMessage>
  </ValidationMessages>
</LegalSearchTypeAheadResponse>