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

update #

Updates a new device manager engine on an index


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/_/device-manager/engine/:index/[?group]
Method: PUT

Other protocols #

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

  // Optional
  "group": "tenant-group"
}

Kourou #

Copied to clipboard!
kourou device-manager/engine:update <index> -a group=<tenant group>

Response #

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

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