GET v1/parcels/ByOwner?ownerName={ownerName}&pageNumber={pageNumber}&pageSize={pageSize}&sortColumn={sortColumn}&sortOrder={sortOrder}
Search by owner names. Will find owners at any position with the owner list (not just the first owner).
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ownerName |
Name to search for. Names are stored in LAST FIRST MI SUFFIX format. A wildcard is implied at the end of the search term. |
string |
Default value is |
| pageNumber |
Page number |
integer |
Default value is 1 |
| pageSize |
Number of results per page |
integer |
Default value is 10 |
| sortColumn |
Column to sort results by. NOTE: Default is RELEVANCE, which will sort by owner name but prioritize parcels where there is a match on OwnerName1.. |
ParcelSearchSortColumn |
Default value is RELEVANCE |
| sortOrder |
Order to sort results by. Ignored if RELEVANCE sort. |
SearchSortOrder |
Default value is ASC |
Body Parameters
None.
Response Information
Resource Description
List of a single page of search results
ParcelSearch| Name | Description | Type | Additional information |
|---|---|---|---|
| ParcelSearchType |
Original search type requested |
ParcelSearchType |
None. |
| TotalCount |
Total number of results matching the search criteria |
integer |
None. |
| PageNumber |
Which page of results are in this response (starting at 1) |
integer |
None. |
| PageCount |
How many pages of results are available |
integer |
None. |
| PageSize |
How many results are on each page |
integer |
None. |
| SortColumn |
Which column is used to sort the results |
ParcelSearchSortColumn |
None. |
| SortOrder |
Which order the results are sorted in |
SearchSortOrder |
None. |
| Results |
List of search results |
Collection of ParcelSummary |
None. |
Response Formats
application/json, text/json
{
"ParcelSearchType": "OWNER",
"TotalCount": 1,
"PageNumber": 2,
"PageCount": 3,
"PageSize": 4,
"SortColumn": "RELEVANCE",
"SortOrder": "ASC",
"Results": [
{
"ParcelNumber": "sample string 1",
"ParcelAddress": "sample string 2",
"Owners": [
"sample string 1",
"sample string 2"
],
"PhotoUrl": "sample string 3",
"LastSaleDate": "2025-12-17T05:05:28.1437237-05:00",
"LastSaleAmount": 1.0,
"TotalMarketValue": 4.0,
"Latitude": 1.1,
"Longitude": 1.1
},
{
"ParcelNumber": "sample string 1",
"ParcelAddress": "sample string 2",
"Owners": [
"sample string 1",
"sample string 2"
],
"PhotoUrl": "sample string 3",
"LastSaleDate": "2025-12-17T05:05:28.1437237-05:00",
"LastSaleAmount": 1.0,
"TotalMarketValue": 4.0,
"Latitude": 1.1,
"Longitude": 1.1
}
]
}
application/xml, text/xml
<ParcelSearch xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MobileApi.Models">
<PageCount>3</PageCount>
<PageNumber>2</PageNumber>
<PageSize>4</PageSize>
<ParcelSearchType>OWNER</ParcelSearchType>
<Results>
<ParcelSummary>
<LastSaleAmount>1</LastSaleAmount>
<LastSaleDate>2025-12-17T05:05:28.1437237-05:00</LastSaleDate>
<Latitude>1.1</Latitude>
<Longitude>1.1</Longitude>
<Owners xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:string>sample string 1</d4p1:string>
<d4p1:string>sample string 2</d4p1:string>
</Owners>
<ParcelAddress>sample string 2</ParcelAddress>
<ParcelNumber>sample string 1</ParcelNumber>
<PhotoUrl>sample string 3</PhotoUrl>
<TotalMarketValue>4</TotalMarketValue>
</ParcelSummary>
<ParcelSummary>
<LastSaleAmount>1</LastSaleAmount>
<LastSaleDate>2025-12-17T05:05:28.1437237-05:00</LastSaleDate>
<Latitude>1.1</Latitude>
<Longitude>1.1</Longitude>
<Owners xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:string>sample string 1</d4p1:string>
<d4p1:string>sample string 2</d4p1:string>
</Owners>
<ParcelAddress>sample string 2</ParcelAddress>
<ParcelNumber>sample string 1</ParcelNumber>
<PhotoUrl>sample string 3</PhotoUrl>
<TotalMarketValue>4</TotalMarketValue>
</ParcelSummary>
</Results>
<SortColumn>RELEVANCE</SortColumn>
<SortOrder>ASC</SortOrder>
<TotalCount>1</TotalCount>
</ParcelSearch>