dlt.makePhoneCall
Introduction
The dlt.makePhoneCall
function is used to initiate a phone call.
Parameters
Object object
Property | Type | Default Value | Required | Description |
---|---|---|---|---|
phoneNumber | string | Yes | The phone number to call. | |
success | function | No | Callback function for a successful API call. | |
fail | function | No | Callback function for a failed API call. | |
complete | function | No | Callback function that is called when the API call is complete (whether successful or not). |
Example Code
dlt.makePhoneCall({
phoneNumber: '13333333333',
});