2022.2

Table Of Contents
Sample return value
'{"ID": "meta", "FirstName": "string", "LastName": "string", "email": "string", "DateC": "meta", "DateM":
"meta"}'
As shown in the sample, the value associated with each key name is actually the data type for that key.
Only two values are currently possible: string and meta, where meta denotes an internally generated
key.
RemoveGroup
Deletes the group named GroupName, along with all its keysets and keys.
Syntax
RemoveGroup(GroupName: string)
Examples
In each of these examples, the object repoObject is deemed having been obtained through a call to
the COM object "RepositoryLib.WorkflowRepository" (see "Obtaining an instance of the Repository
Object" on page147).
JavaScript
repoObject.RemoveGroup("Users");
VB Script
repoObject.RemoveGroup "Users"
RemoveKey
Removes existing key KeyName from group GroupName. The key to remove must exist in the group,
otherwise an error is raised. All values for the key, in all keysets for the group, are removed. Note that
when the Group contains a large number of KeySets, this operation may take a while.
Syntax
RemoveKey(GroupName: string, KeyName: string)
Examples
In each of these examples, the object repoObject is deemed having been obtained through a call to
the COM object "RepositoryLib.WorkflowRepository" (see "Obtaining an instance of the Repository
Object" on page147).
JavaScript
Page 157