GET api/crmconnect/globalsearch/property?term={term}&excludeArchived={excludeArchived}&excludeDeleted={excludeDeleted}
Api to search the crm for property and return values in a format acceptable by the rezi global search
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| term | string |
Required |
|
| excludeArchived | boolean |
Default value is True |
|
| excludeDeleted | boolean |
Default value is True |
Body Parameters
None.
Response Information
Resource Description
Collection of CrmConnectGlobalSearchPropertyDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Price | decimal number |
None. |
|
| PriceQualifier | string |
None. |
|
| Market | string |
None. |
|
| Status | string |
None. |
|
| Address | string |
None. |
|
| NavigationContextJson | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Price": 1.1,
"PriceQualifier": "sample string 2",
"Market": "sample string 3",
"Status": "sample string 4",
"Address": "sample string 5",
"NavigationContextJson": "sample string 6"
},
{
"Price": 1.1,
"PriceQualifier": "sample string 2",
"Market": "sample string 3",
"Status": "sample string 4",
"Address": "sample string 5",
"NavigationContextJson": "sample string 6"
}
]