Skip to main content

Merge Warm transfer

This event is used to merge (finish the transfer) a Warm transfer call.

{
"type": "DIALER.MERGE_WARM_TRANSFER"
}

After sending this event, you should expect to receive a DIALER.CALL_STATUS event with the the merging status.

{
"type": "DIALER.CALL_STATUS",
"payload": {
"flow": "warmTransfer",
"status": "merging"
}
}

If merging is successful, the call will be transferred to someone else, you will be disconnected, and a DIALER.CALL_STATUS event will come with the following payload:

{
"type": "DIALER.CALL_STATUS",
"payload": {
"flow": "regular",
"status": "ended"
}
}