| API URL | /grp/tree |
| Description | Get CMS all groups/roles list RESTFul API |
| Access | Restricted to roles: admin, demo |
| Rquest method | GET |
| Request data type | n/a |
| Request data | n/a |
| Response type | JSON |
| Response data |
[ // dynatree object data
{
key: '###SOURCE###', // root node key
title: 'All Groups', // root node title
folder: true, // root node is folder
children: [ // all group node array
{ // all group node data
key: 'group code', // all group code
title: 'group name', // all group name
icon: 'user-group-icon.png' // group icon file name
}
...
]
}
]
|