Kuzzle
Documentation
2

create #

Creates a new device manager engine on an index


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/_/device-manager/engine/:index
Method: POST

Other protocols #

Copied to clipboard!
{
  "controller": "device-manager/engine",
  "action": "create",
  "index": "tenant-ayse"
}

Kourou #

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

Response #

Returns an object containing the index name and the list of created collections with their mappings.

Copied to clipboard!
{
  "requestId": "d16d5e8c-464a-4589-938f-fd84f46080b9",
  "status": 200,
  "error": null,
  "controller": "device-manager/engine",
  "action": "create",
  "collection": null,
  "index": null,
  "result": { 
    "index": "tenant-ayse",
    "collections": {
      "assets": {
        "properties": {
          // Mappings properties
        }
      },
      // other collections are returned as well
    }
  }
}