Feed Property Search API from AutoComplete Responses

Based on the user input that was provided during the AutoComplete API phase of your application's AutoComplete design, you will call the Property Search with different sets of parameters.

  1. searchType: 'A' returned from AutoComplete - full address
{
  "size": 100,
  "searchType": "A",
  "id": "196537292",
  "apn": "38 01121-0000-00002",
  "stateId": "34",
  "countyId": "005",
  "fips": "34005",
  "title": "9 Topeka Pass, Willingboro, NJ, 08046"
}
  1. searchType: 'Z' returned from AutoComplete - zip
{
  "size": 100,
  "searchType": "Z",
  "id": "28831304",
  "apn": "13-010-007",
  "stateId": "51",
  "countyId": "013",
  "fips": "51013",
  "title": "883 N Kentucky St, Arlington, VA, 22205"
}
  1. searchType: 'S' returned from AutoComplete - city/state
{
  "size": 100,
  "searchType": "S",
  "stateId": "51",
  "countyId": "059",
  "fips": "51059",
  "title": "Herndon Pkwy, Herndon, VA"
}
  1. searchType: 'C' returned from AutoComplete - county
{
  "size": 100,
  "searchType": "C",
  "id": "531392",
  "apn": "012689 30.4-5-54",
  "fips": "36001",
  "countyId": "001",
  "stateId": "36"
}
  1. searchType: 'G' returned from AutoComplete - neighborhood
{
  "size": 50,
  "searchType": "G",
  "neighborhood_id": "your_neighborhood_id",
  "neighborhood_name": "your_neighborhood_name"
}