Group (JSON)
Properties
Name |
Type |
Description |
|
id |
string
|
Get the group id. |
|
name |
string
|
Get the group name. |
|
description |
string
|
Get the group description. |
|
codeOfConduct |
string
|
Get the group code of conduct. |
|
treeIds |
array of
string
|
Get the ids of the trees associated with the group. |
|
members |
array of
GroupMember
|
Get the members of the group. |
|
Example
{
"id" : "...",
"name" : "...",
"description" : "...",
"codeOfConduct" : "...",
"treeIds" : [ "...", "..." ],
"members" : [ {
"groupId" : "...",
"cisId" : "...",
"contactName" : "...",
"status" : "..."
}, {
"groupId" : "...",
"cisId" : "...",
"contactName" : "...",
"status" : "..."
} ]
}