Official Plugins (Kuzzle v2.x)
Device Manager v2.x
2

searchDevices #

Searches for device models.


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/_/device-manager/models/devices/_search
Method: POST

Other protocols #

Copied to clipboard!
{
  "controller": "device-manager/models",
  "action": "searchDevices",
  "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 the size argument
  • size: set the maximum number of documents returned per result page

Body properties #


Response #

Copied to clipboard!
{
  "status": 200,
  "error": null,
  "controller": "device-manager/models",
  "action": "searchDevices",
  "requestId": "<unique request identifier>",
  "result": {
    "hits": [
      {
        "_id": "<deviceModelId>",
        "_source": {
          // Device model content
        },
      },
    ],
    "total": 42
  }
}