You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
consttransferError=transfer.error; // transfer error code that describes the failure if a transfer request failed
128
+
```
129
+
130
+
The *transferee* can listen to a `transferAccepted` event. The listener for this event has a `TransferEventArgs` which contains the call object of the new transfer call
131
+
between the *transferee* and the *target participant voicemail*.
132
+
133
+
```js
134
+
// Transferee can subscribe to the transferAccepted event
135
+
callTransferApi.on('transferAccepted', args=> {
136
+
constnewTransferCall=args.targetCall;
137
+
});
138
+
```
139
+
140
+
The *transferor* can subscribe to events for change of the state of the transfer. If the call to the *transferee* was successfully connected with *target participant voicemail*, *transferor* can hang up the original call with *transferee*.
0 commit comments