Call blind_transfer_callee
Transfer the call during the conversation, and the callee will leave the conversation.
def blind_transfer_callee target |
Method parameters
Parameter name | Value | Description | Default value | Mandatory |
target | string value e.g. '2000' |
The destination number where the callee will be transferred to. | (None) | Yes |
Example
#get the active calls list calls = OPS.list_active_calls '192.168.0.1', nil, 'admin', 'password' #pick up the first call call = calls[0] if (call != nil) call.blind_transfer_callee 1002 end |