POST 17.0/find/property/count

Description

Gets the number of Properties that match the passed query

URI Parameters

None.

Name Description Type Additional information
Filters

PropertyFindFilters

None.

TextToFind

string

Required

MaxResults

integer

None.

application/json, text/json

Sample:
{
  "filters": {
    "branchID": 1,
    "category": 2,
    "status": 3
  },
  "textToFind": "sample string 1",
  "maxResults": 2
}

application/xml, text/xml

Sample:
<PropertyFindQuery xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <TextToFind>sample string 1</TextToFind>
  <MaxResults>2</MaxResults>
  <Filters>
    <BranchID>1</BranchID>
    <Category>2</Category>
    <Status>3</Status>
  </Filters>
</PropertyFindQuery>

application/x-www-form-urlencoded

Sample:

Sample not available.

Name Description Type Additional information
Total

integer

None.

application/json, text/json

Sample:
{
  "total": 1
}

application/xml, text/xml

Sample:
<FindCountResult xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Total>1</Total>
</FindCountResult>