BB Admin functions

BBAdmin.attractUser

Function

Description

BBAdmin.attractUser(options)

Attract new user.

Bot owner attract new user with email "[email protected]" to Bots.Business. Email must be valid.

  • User will be received email with password and information for start.

  • Bot owner can see new user in App -> Account -> Attracted Users List

  • Bot owner have rewards for each attracted user with paid Plan

This function work only for new users. For old users - no any attraction and no email.

BBAdmin.attractUser(
  { email: '[email protected]'}
)

Also it is possible pass owner_id (If not defined - used bot owner ID)

BBAdmin.attractUser(
  { 
    email: '[email protected]',
    owner_id: user_id // 
  }
)

BBAdmin.installBot

Function

Description

BBAdmin.installBot(options)

Install bot for other user

You can install copy of yours exist bot for user with email.

If user is new user - they will be attracted as yours referral.

You can pass bot properties for new bot.

You can also clone your own bot with this function or use BBAdmin.cloneBot

BBAdmin.cloneBot

Function

Description

BBAdmin.cloneBot(options)

Clone own bot

You can create copy of yours exist bot

You can pass bot properties for new bot.

Last updated

Was this helpful?