Interface InitiateCallResult

Result of initiating a call.

interface InitiateCallResult {
    providerCallId: string;
    success: boolean;
    error?: string;
}

Properties

providerCallId: string

Provider-assigned call ID.

success: boolean

Whether the call was accepted by the provider.

error?: string

Error message if not successful.