Transfers the current SIP call to another phone and returns the result of the transfer. This method is available only for SIP implementations.
To interact with the target phone number, use @phone::startAttendedTransfer.
@phone::blindTransfer(String phoneNumber)
(String) phoneNumber: the target phone number for the transferred call
(String) Result of the transfer. Possible values are:
The following example illustrates using the blindTransfer method to forward a call to a target number, and to replay the menu options if the transfer is not successful:
$transferResult = @phone::blindTransfer("2505550304")
IF ($result != "SUCCESS")
@phone::play("Sorry, your call could not be completed")
# Go back and replay menu options other than transfer
ENDIF