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

update #

This action allow to migrates a list of assets and their attached devices to another tenant.

Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/_/device-manager/:engineId/assets/_migrateTenant
Method: POST

Other protocols #

Copied to clipboard!
{
  "controller": "device-manager/assets",
  "action": "migrateTenant",
  "engineId": "<engineId>",
  "body": {
    "assetsList": ["<assetId>"],
    "newEngineId": "<newEngineId>"
  }
}

Arguments #

  • engineId: Engine ID

Body properties #

  • assetsList: An array containing a list of asset ids to migrate
  • newEngineId: The id of the engine you want to migrate the assets to

Response #

Copied to clipboard!
{
  "status": 200,
  "error": null,
  "controller": "device-manager/assets",
  "action": "migrateTenant",
  "requestId": "<unique request identifier>",
}