searchMeasures #
Searches for measure models.
Query Syntax #
HTTP #
URL: http://kuzzle:7512/_/device-manager/models/measures/_search
Method: POST
Other protocols #
{
"controller": "device-manager/models",
"action": "searchMeasures",
"body": {
"query": {
// ...
},
"sort": [
// ...
]
},
// optional:
"from": "<starting offset>",
"size": "<page size>"
}
Arguments #
from
: paginates search results by defining the offset from the first result you want to fetch. Usually used with thesize
argumentsize
: set the maximum number of documents returned per result page
Body properties #
query
: the search query itself, using the ElasticSearch Query DSL.sort
: contains a list of fields, used to sort search results, in order of importance.
Response #
{
"status": 200,
"error": null,
"controller": "device-manager/models",
"action": "searchMeasures",
"requestId": "<unique request identifier>",
"result": {
"hits": [
{
"_id": "<measureModelId>",
"_source": {
// Measure model content
},
},
],
"total": 42
}
}
Edit this page on Github(opens new window)