Skip to content

KAZOO Support Channels

This documentation is curated by 2600Hz as part of the KAZOO open source project. Join our community forums here for peer support. Only features in the docs.2600hz.com/supported space are included as part of our 2600Hz Support Services plan.

monster.util.getBookkeepers()#

Syntax#

monster.util.getBookkeepers();

Return value#

An Array[Object].

Description#

This method returns a list of bookkeepers available for Monster UI depending on how they where configured in config.js.

Each bookkeeper contains a label (internationalized text) and value (identifier) properties.

The list of bookkeepers will always contain at least one value (default).

Example#

monster.util.getBookkeepers();
// -> [{
//      label: 'Default',
//      value: 'default'
//    }, {
//      label: 'Braintree',
//      value: 'braintree'
//    }, {
//      label: 'HTTP',
//      value: 'http'
//    }, {
//      label: 'Kazoo',
//      value: 'kazoo'
//    }]