Function: fulfillIncomingCallConnected()
ts
function fulfillIncomingCallConnected(requestId): Promise<void>;Defined in: Calls.ts:528
Fulfills an incoming call by confirming the media connection is established.
Call this after the user answers an incoming call and your media connection (e.g., WebRTC) is fully connected and ready for audio/video.
Parameters
| Parameter | Type | Description |
|---|---|---|
requestId | string | The request ID from the CallAnsweredEvent. |
Returns
Promise<void>
See
- addCallAnsweredListener — the event you typically respond to before calling this.
- failIncomingCallConnected — call this instead if media setup fails.