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

attachTenant #

Attach a device to a tenant.

The device document will be duplicated inside the tenant devices collection.


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/_/device-manager/:index/devices/:_id/_attach[?refresh=wait_for]
Method: PUT

Other protocols #

Copied to clipboard!
{
  "index": "<index>",
  "controller": "device-manager/device",
  "action": "attachTenant",
  "_id": "<deviceId>"
}

Kourou #

Copied to clipboard!
kourou device-manager/device:attachTenant <index> --id <deviceId>

Arguments #

  • index: Tenant index name

Optional: #

  • refresh: if set to wait_for, Kuzzle will not respond until the documents are indexed

Response #

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