Get a list of device groups the user has been added to by other users and all devices and device groups under them, recursively
GET /v1/shareddevicegroup/tree
Summary
Get a list of device groups the user has been added to by other users and all devices and device groups under them, recursively.
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
TreeNodeTreeNode
- array of
Example
{
"title": "Example value",
"key": "Example value",
"isLeaf": true,
"selectable": true,
"children": [
{
"title": "Example value",
"key": "Example value",
"isLeaf": true,
"selectable": true,
"children": [
null
]
}
]
}