2020.1

Table Of Contents
Group methods
Name Description
"AddGroup" on page182 Creates a group named GroupName and optionally
creates keys listed in keyNames. The keyNames
parameter may be empty.
"ListGroups" on page188 Retrieves the list of all group names in the Repository,
stored in a JSONStringArray..
"RemoveGroup" on page190 Deletes the group named GroupName, along with all its
keysets and keys.
"RenameGroup" on page193
Renames group oldName to newName. While this
operation has no impact on the data stored in the
specified group, it does require any plugin and/or script
that uses oldName to be modified to refer to newName.
Key Methods
Name Description
"AddKey" on page182 Adds key KeyName to group GroupName. KeyName
must not already exist in the specified group. Note that this
method only adds a key name to the group, not a key
value. See "AddValue" on page184 for information on
how to set a value for a key.
"ListKeys" on page189 Retrieves the list of all Key names and data types in Group
GroupName, stored in a JSONStringObject. You should
use JSON.Parse() to convert the string into an actual
JavaScript object. You can then use the for…in construct
to list the different properties for that object (i.e. the keys in
the group).
Page 178