Skip to main content
Initiate a phone call to the specified number.

Parameters

PropertyTypeRequiredDescription
numberStringYesPhone number to call
successFunctionNoCallback on success
failFunctionNoCallback on failure
completeFunctionNoCallback that always executes

Code Example

my.makePhoneCall({
  number: '+1234567890',
  success: () => {
    console.log('Call initiated');
  }
});