transfer
Transfers the current call.
Description
vcc.transfer(phone: string, [isProcess: boolean]): void
Parameters
phone
Telephone number or process ID.
isProcess
Transfer to the given process ID if true.
Return values
none
Example
You want to add two buttons to the script: transfer to external number, and transfer to the financial department.
$('page', 'transfer_phone_button').afterSetData = function() {
vcc.transfer('3670333444');
};
$('page', 'transfer_process_button').afterSetData = function() {
vcc.transfer('345', true);
};
Comments
Can’t find what you need? Use the comment section below to connect with others, get answers from our experts, or share your ideas with us.
There are no comments yet.