GET api/search/properties?term={term}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| term | string |
Required |
Body Parameters
None.
Response Information
Resource Description
SearchResultsDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| SearchTerm | string |
Required |
|
| Hits | Collection of SearchHitDTO |
Required |
Response Formats
application/json, text/json
Sample:
{
"SearchTerm": "sample string 1",
"Hits": [
{
"Score": 1.0,
"Type": "Property",
"EntityId": "sample string 2",
"Name": "sample string 3"
},
{
"Score": 1.0,
"Type": "Property",
"EntityId": "sample string 2",
"Name": "sample string 3"
}
]
}