Skip to main content
Feedback

Including Boomi Cloud API Management 6.1.0 Plugins

The Developer Portal includes a registry of in-built plugins that can be activated or deactivated in the customizations.js file.

info

The toggle password visibility plug-in adds a button to toggle the visibility of password fields to any form that contains them. By default, it is set to on.

Activating 6.1.0 Plugin

To activate a plug-in, use the portal.plugins.on() method and pass the plug-in's ID as an argument.

For example, to activate the toggle password visibility plug-in, use the portal.plugins.on() method and ID of the plug-in as shown below:

portal.plugins.on('togglePassword');

Deactivating 6.1.0 Plugin

To deactivate a plug-in, pass the plug-in ID into the portal.plugins.off() method.

For example, to deactivate the toggle password visibility plug-in, use the portal.plugins.off() method and ID of the plug-in as shown below:

portal.plugins.off('togglePassword');

Getting a list of All 6.1.0 Plugins

To get a list of all available plug-ins, use the portal.plugins.get() method, as shown below:

var plugins = portal.plugins.get();

On this Page