Skip to main content
Version: 7.9

system.eam.getGroups

This function is used in Python Scripting.

Description​

Returns the names of the defined agent organizational groups in the Gateway.

Client Permission Restrictions​

This scripting function has no Client Permission restrictions.

Syntax​

system.eam.getGroups()

Parameters​

Nothing

Returns​

A string list of group names

Scope​

All

Code Examples​

Example 1
# Return and print all of the EAM groups
groups = system.eam.getGroups()
for group in groups:
print group