Skip to main content

Gets the device group tree

GET /v1/devicegroup/tree

Summary

Gets the device group tree.

Authentication

No operation-level security requirement is documented here.

Parameters

None documented here.

Request Body

No request body is documented here.

Responses

200

Success

application/json

  • title (string, optional)
  • key (string, optional)
  • isLeaf (boolean, optional)
  • selectable (boolean, optional)
  • children (array<TreeNode>, optional)
    • array of TreeNode
      • TreeNode

Example

{
"title": "Example value",
"key": "Example value",
"isLeaf": true,
"selectable": true,
"children": [
{
"title": "Example value",
"key": "Example value",
"isLeaf": true,
"selectable": true,
"children": [
null
]
}
]
}