# Public Switched Telephone Network (PSTN) The Video SDK call out feature allows users to join Video SDK sessions completely over the phone or use their phone as the audio connection to the session while viewing the Video on Web. This is useful when: - You do not have a microphone or speaker on your computer. - You do not have an iOS or Android smartphone. - You cannot connect to a network for a video session with computer audio (VoIP). See [Customize audio conferencing](/docs/video-sdk/account/#customize-audio-conferencing) for details. ## Prerequisites - [Video SDK Account](https://zoom.us/pricing/developer) - [Audio Conferencing Plan](https://zoom.us/billing) ## Make a call Use `ZoomVideoSDK.getInstance().getPhoneHelper()` to make a call. - Provide the name if the user will join completely by phone. - If the user is already connected to the session, but wants to use their phone for the audio portion, the name will default to the name provided in the `session_context`. ```kotlin ZoomVideoSDK.getInstance().phoneHelper.inviteByPhone("+1", "123123123", "Alice") ``` ```java ZoomVideoSDK.getInstance().getPhoneHelper().inviteByPhone("+1","123123123","Alice"); ``` ## Receive call status You can receive the call status and failure reason under the `onInviteByPhoneStatus` callback under `ZoomVideoSDKDelegate`. ```kotlin override fun onInviteByPhoneStatus(status: ZoomVideoSDKPhoneStatus, reason: ZoomVideoSDKPhoneFailedReason) { super.onInviteByPhoneStatus(status, reason) Log.d(TAG, "Current invitation status: $status and reason of failure $reason") } ``` ```java @Override public void onInviteByPhoneStatus(ZoomVideoSDKPhoneStatus status, ZoomVideoSDKPhoneFailedReason reason) { super.onInviteByPhoneStatus(status, reason); Log.d(TAG, "Current invitation status: " + status + " and reason of failure: " + reason); } ```