system.alarm.createRoster

Description

This function creates a new roster. Users may be added to the roster through the Gateway or the Roster Management component

Syntax

system.alarm.createRoster(name, description)

  • Parameters

String name - The name for the new roster

String description - An description for the new roster. Required, but can be blank.

  • Returns

Nothing

  • Scope

All

Code Examples
Code In Action
# This example creates a new roster
name = 'MyRoster'
description = 'A roster created by scripting'
system.alarm.createRoster(name, description)