McDewey

Multi-vendor documentation library · semantic search · MCP endpoint at /mcp

Page 503

↗ View in doc context
page
503
source
finesse/v12.5/developer-guide/developer-guide.md
chunk_id
finesse::v12.5::developer-guide::developer-guide::487

Represents the logout actions for media tasks (non-voice dialogs). The actions are performed on the dialog when the user logs out. Field Details Description Name The user sets the action to close active dialogs when logged out. CLOSE The user sets the action to transfer active dialogs when logged out. TRANSFER Method isValidAction(action) Determines whether the logout action is valid. Parameters Required Description Type Name Yes The action to evaluate. String action Returns {Boolean} True if the action is valid and false if it is not valid. Dialogs Class finesse.restservices.Dialogs Extends finesse.restservices.RestCollectionBase Represents a collection of dialog objects. Example _dialogs = _user.getDialogs({ onCollectionAdd: _handleDialogAdd, onCollectionDelete: _handleDialogDelete, onLoad: _handleDialogsLoaded }); _dialogCollection = _dialogs.getCollection(); for (var dialogId in _dialogCollection) { if (_dialogCollection.hasOwnProperty(dialogId)) { _dialog = _dialogCollection[dialogId]; etc... } } For additional parameters and methods, see RestCollectionBase Common Parameters, on page 452. Cisco Finesse Web Services Developer and JavaScript Guide, Release 12.5(1) 487 Cisco Finesse JavaScript APIs Dialogs