Kuzzle
Documentation
2

list #

Lists available Device Management engines.


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/_/device-manager/engines
Method: GET

Other protocols #

Copied to clipboard!
{
  "controller": "device-manager/engine",
  "action": "list",
}

Kourou #

Copied to clipboard!
kourou device-manager/engine:list <index>

Response #

Returns an object with an engines property containing the engines list.

Copied to clipboard!
{
  "requestId": "d16d5e8c-464a-4589-938f-fd84f46080b9",
  "status": 200,
  "error": null,
  "controller": "device-manager/engine",
  "action": "list",
  "collection": null,
  "index": null,
  "result": { 
    "engines": [
      { "index": "tenant-ayse" },
      { "index": "tenant-kadikoy" },
    ]
  }
}