Group Data Type

Group information in REST calls

Properties
name data type description
id number Group ID
name string Group name
description string Description
children array of Group List of child groups

Example

{
  "id" : 12345,
  "name" : "...",
  "description" : "...",
  "children" : [ {
    "id" : 12345,
    "name" : "...",
    "description" : "...",
    "children" : [ { }, { } ]
  }, {
    "id" : 12345,
    "name" : "...",
    "description" : "...",
    "children" : [ { }, { } ]
  } ]
}