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 Processes this crm connect API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
term

The term value supplied with the request.

string

Required

excludeArchived

The exclude archived value supplied with the request.

boolean

Default value is True

excludeDeleted

The exclude deleted value supplied with the request.

boolean

Default value is True

Body Parameters

None.

Response Information

Resource Description

The response returned after the operation completes.

Collection of CrmConnectGlobalSearchPropertyDataContract
NameDescriptionTypeAdditional information
Price

The price value.

decimal number

None.

PriceQualifier

The price qualifier value.

string

None.

Market

The market value.

string

None.

Status

The status value.

string

None.

Address

The address value.

string

None.

NavigationContextJson

The navigation context json value.

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"
  }
]