<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Docs | PointVoIP</title>
	<atom:link href="https://pointvoip.com/kb-docs/feed/" rel="self" type="application/rss+xml" />
	<link>https://pointvoip.com</link>
	<description>Long Island Phone Systems</description>
	<lastBuildDate>Fri, 20 Nov 2020 05:01:40 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>
        <wp_options>
            <wp_option>
                <name>
                    shopengine_activated_templates                </name>
                <val>
                    a:0:{}                </val>
            </wp_option>
        </wp_options>
        	<item>
		<title>Get PBX Extensions</title>
		<link>https://pointvoip.com/docs/get-pbx-extensions/</link>
					<comments>https://pointvoip.com/docs/get-pbx-extensions/#respond</comments>
		
		<dc:creator><![CDATA[user]]></dc:creator>
		<pubDate>Fri, 20 Nov 2020 04:57:22 +0000</pubDate>
				<guid isPermaLink="false">https://pointvoip.com/?post_type=docs&#038;p=7595</guid>

					<description><![CDATA[<p>This API endpoint will allow you to pull a list of extensions from your PBX along with any associated information. Base URL POST&#160;https://portal.vevzo.com/api/v1/get/extensions Example JSON to Get Extensions List { "authId": "YOUR_API_ID", "authKey": "YOUR_API_KEY", "module": "pbx", "pbxId": "1234" } POST Parameters Parameter Required Description Expected Value authId yes Your portal authentication ID string(24) authKey yes</p>
The post <a href="https://pointvoip.com/docs/get-pbx-extensions/">Get PBX Extensions</a> first appeared on <a href="https://pointvoip.com">PointVoIP</a>.]]></description>
										<content:encoded><![CDATA[<p class="wp-block-paragraph">This API endpoint will allow you to pull a list of extensions from your PBX along with any associated information.</p>



<h5 class="wp-block-heading" id="0-toc-title">Base URL</h5>



<p class="wp-block-paragraph"><strong><span class="badge badge-primary">POST</span></strong>&nbsp;https://portal.vevzo.com/api/v1/get/extensions</p>



<h6 class="wp-block-heading">Example JSON to Get Extensions List</h6>



<pre class="wp-block-preformatted">{
    "authId": "YOUR_API_ID",
    "authKey": "YOUR_API_KEY",
    "module": "pbx",
    "pbxId": "1234"
}</pre>



<h4 class="wp-block-heading">POST Parameters</h4>



<figure class="wp-block-table is-style-stripes"><table><thead><tr><th>Parameter</th><th>Required</th><th>Description</th><th>Expected Value</th></tr></thead><tbody><tr><td>authId</td><td>yes</td><td>Your portal authentication ID</td><td>string(24)</td></tr><tr><td>authKey</td><td>yes</td><td>Your portal authentication key</td><td>string(24)</td></tr><tr><td>module</td><td>yes</td><td>The api module you are accessing</td><td>pbx</td></tr><tr><td>pbxId</td><td>yes</td><td>The ID of your PBX in the portal.</td><td>numeric</td></tr></tbody></table></figure>



<h4 class="wp-block-heading">Example JSON Response</h4>



<pre class="wp-block-preformatted">{
    "message":"2 total extensions found",
    "count":2,
    "result":[
       {
          "number":"1000"
          "status":"1",
          "firstName":"Jane",
          "lastName":"Doe",
          "email":"jane.doe@pointvoip.com",
          "callerId":"+15169005353",
          "e911":{
             "subscriber":"PointVoIP",
             "address1":"329 S. OYSTER BAY RD",
             "address2":"STE 329",
             "city":"PLAINVIEW",
             "zip":"11803",
             "state": "NEW YORK",
             "psapName":"PROVISIONED"
          },
          "lastUpdate":"2020-03-01 12:19:01"
       },
       {
          "number":"1001"
          "status":"1",
          "firstName":"John",
          "lastName":"Doe",
          "email":"john.doe@pointvoip.com",
          "callerId":"+15169005353",
          "e911":[],
          "lastUpdate":"2020-03-01 12:19:01"
       }
 ],
    "status":true,
    "node":"VE-NY-02",
    "executionTime":"0.7100"
 }</pre>



<h4 class="wp-block-heading">JSON Response Parameters</h4>



<figure class="wp-block-table is-style-stripes"><table><thead><tr><th>Parameter</th><th>Type</th><th>Description</th></tr></thead><tbody><tr><td>message</td><td>string</td><td>General response message.</td></tr><tr><td>count</td><td>int</td><td>Total number of extensions returned.</td></tr><tr><td>status</td><td>boolean</td><td>The status if the request was successful.</td></tr><tr><td>node</td><td>string</td><td>The ID of the cloud node this was executed on.</td></tr><tr><td>executionTime</td><td>float</td><td>The time in seconds it took to execute the API request.</td></tr><tr><td>result</td><td>array</td><td>Contains an array of the returned extensions</td></tr><tr><td>result[number]</td><td>int</td><td>The PBX extension number.</td></tr><tr><td>result[status]</td><td>boolean</td><td>Returns true if the extension is registered and false if it is not.</td></tr><tr><td>result[firstName]</td><td>string</td><td>Extension first name</td></tr><tr><td>result[lastName]</td><td>string</td><td>Extension last name</td></tr><tr><td>result[email]</td><td>string</td><td>Extension email address</td></tr><tr><td>result[callerId]</td><td>string</td><td>Extension’s set outbound caller ID</td></tr><tr><td>result[e911]</td><td>array</td><td>Returns an array of E911 parameters, this will return a blank array if none set.</td></tr><tr><td>result[e911][subscriber]</td><td>string</td><td>The E911 subscriber name</td></tr><tr><td>result[e911][address1]</td><td>string</td><td>The E911 registered address line 1.</td></tr><tr><td>result[e911][address2]</td><td>string</td><td>The E911 registered address line 2.</td></tr><tr><td>result[e911][city]</td><td>string</td><td>The E911 registered city.</td></tr><tr><td>result[e911][state]</td><td>string</td><td>The E911 registered state.</td></tr><tr><td>result[e911][zip]</td><td>string</td><td>The E911 registered ZIP code.</td></tr><tr><td>result[e911][psapName]</td><td>string</td><td>The E911 associated PSAP name.</td></tr><tr><td>result[lastUpdate]</td><td>DATETIME</td><td>The last time the record was automatically updated.</td></tr></tbody></table></figure>The post <a href="https://pointvoip.com/docs/get-pbx-extensions/">Get PBX Extensions</a> first appeared on <a href="https://pointvoip.com">PointVoIP</a>.]]></content:encoded>
					
					<wfw:commentRss>https://pointvoip.com/docs/get-pbx-extensions/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Status &#038; Forwarding Rules</title>
		<link>https://pointvoip.com/docs/status-forwarding-rules/</link>
					<comments>https://pointvoip.com/docs/status-forwarding-rules/#respond</comments>
		
		<dc:creator><![CDATA[user]]></dc:creator>
		<pubDate>Fri, 20 Nov 2020 04:25:41 +0000</pubDate>
				<guid isPermaLink="false">https://pointvoip.com/?post_type=docs&#038;p=7589</guid>

					<description><![CDATA[<p>Apple iOS To set your status and automatically configure call forwarding, tap on your profile image&#160;on the sidebar menu&#160;to select: “Available”&#160;&#8211; ready to receive calls. “Away”&#160;&#8211; temporarily unavailable, divert to voicemail. “Do Not Disturb”&#160;&#8211; divert to voicemail. “Lunch”&#160;&#8211; set a custom status. “Business Trip”&#160;&#8211; set a second custom status. Customize your forwarding rules and exceptions via</p>
The post <a href="https://pointvoip.com/docs/status-forwarding-rules/">Status & Forwarding Rules</a> first appeared on <a href="https://pointvoip.com">PointVoIP</a>.]]></description>
										<content:encoded><![CDATA[<h4 class="wp-block-heading">Apple iOS</h4>



<p class="wp-block-paragraph">To set your status and automatically configure call forwarding, tap on your profile image&nbsp;on the sidebar menu&nbsp;to select:</p>



<ul class="wp-block-list"><li><strong>“Available”</strong>&nbsp;&#8211; ready to receive calls.</li><li><strong>“Away”</strong>&nbsp;&#8211; temporarily unavailable, divert to voicemail.</li><li><strong>“Do Not Disturb”</strong>&nbsp;&#8211; divert to voicemail.</li><li><strong>“Lunch”</strong>&nbsp;&#8211; set a custom status.</li><li><strong>“Business Trip”</strong>&nbsp;&#8211; set a second custom status.</li></ul>



<p class="wp-block-paragraph">Customize your forwarding rules and exceptions via the 3CX Web Client.</p>



<h4 class="wp-block-heading">Android</h4>



<p class="wp-block-paragraph">Using the Status feature will let your colleagues know if its OK to call you, saving you from being distracted and them from wasting time.</p>



<p class="wp-block-paragraph">Choose from&nbsp;Available,&nbsp;Away,&nbsp;Do Not Disturb,&nbsp;Lunch,&nbsp;Business Trip, and&nbsp;Set Status Temporarily.</p>



<p class="wp-block-paragraph">You can further customize your status and call forwarding rules in the&nbsp;<a href="https://www.3cx.com/user-manual/web-client/">Web Client</a>.</p>The post <a href="https://pointvoip.com/docs/status-forwarding-rules/">Status & Forwarding Rules</a> first appeared on <a href="https://pointvoip.com">PointVoIP</a>.]]></content:encoded>
					
					<wfw:commentRss>https://pointvoip.com/docs/status-forwarding-rules/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>3CX App Install</title>
		<link>https://pointvoip.com/docs/3cx-app-install/</link>
					<comments>https://pointvoip.com/docs/3cx-app-install/#respond</comments>
		
		<dc:creator><![CDATA[user]]></dc:creator>
		<pubDate>Fri, 20 Nov 2020 04:23:42 +0000</pubDate>
				<guid isPermaLink="false">https://pointvoip.com/?post_type=docs&#038;p=7587</guid>

					<description><![CDATA[<p>Apple iOS / iPad OS To install and configure the 3CX App for iOS 10+, iPhone 5S+, iPod touch (generation 6), iPad (generation 4+), iPad Pro (generation 1+), iPad Mini 2+: Open the App Store, search for&#160;“3CX”&#160;and&#160;tap&#160;“Install”. When the app is installed, open it,&#160;“Agree”&#160;with the License Agreement and authorize its permissions. Automatically configure the app by opening your Welcome Email</p>
The post <a href="https://pointvoip.com/docs/3cx-app-install/">3CX App Install</a> first appeared on <a href="https://pointvoip.com">PointVoIP</a>.]]></description>
										<content:encoded><![CDATA[<h4 class="wp-block-heading">Apple iOS / iPad OS</h4>



<p class="wp-block-paragraph">To install and configure the <a href="https://itunes.apple.com/us/app/3cxphone-15-for-3cx-phone/id992045982?ls=1&amp;mt=8">3CX App for iOS</a> 10+, iPhone 5S+, iPod touch (generation 6), iPad (generation 4+), iPad Pro (generation 1+), iPad Mini 2+:</p>



<ol class="wp-block-list"><li>Open the App Store, search for&nbsp;<strong>“</strong><strong>3CX”</strong>&nbsp;and&nbsp;tap&nbsp;<strong>“</strong><strong>Install”</strong>.</li><li>When the app is installed, open it,&nbsp;<strong>“</strong><strong>Agree”</strong>&nbsp;with the License Agreement and authorize its permissions.</li><li>Automatically configure the app by opening your Welcome Email and scanning the included QR code.</li><li>When you see the&nbsp;<strong>“On Hook”</strong>&nbsp;message on the dial screen, you can start making calls.</li></ol>



<h4 class="wp-block-heading">Android</h4>



<p class="wp-block-paragraph">If you haven’t already,&nbsp;<a href="https://play.google.com/store/apps/details?id=com.tcx.sipphone14">install the app</a>&nbsp;from the Google Play Store.</p>



<ol class="wp-block-list"><li>Allow 3CX to access the camera so you can provision your extension via QR code.</li><li>Scan the QR from your Welcome Email and continue to make a test call to the&nbsp;<strong>“Echo service”</strong>&nbsp;so that you can grant the app the required permissions.</li><li>Give authorization, make the call and you’re all set!</li></ol>The post <a href="https://pointvoip.com/docs/3cx-app-install/">3CX App Install</a> first appeared on <a href="https://pointvoip.com">PointVoIP</a>.]]></content:encoded>
					
					<wfw:commentRss>https://pointvoip.com/docs/3cx-app-install/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Using the Switchboard</title>
		<link>https://pointvoip.com/docs/using-the-switchboard/</link>
					<comments>https://pointvoip.com/docs/using-the-switchboard/#respond</comments>
		
		<dc:creator><![CDATA[user]]></dc:creator>
		<pubDate>Fri, 20 Nov 2020 04:14:02 +0000</pubDate>
				<guid isPermaLink="false">https://pointvoip.com/?post_type=docs&#038;p=7584</guid>

					<description><![CDATA[<p>For job roles where advanced call management is a daily task, the 3CX Switchboard is a powerful and user-friendly tool that offers a concise yet comprehensive view on call and queue activity. There are various Switchboard views to choose from depending on your job role, which allows for quick and efficient call answering and transfers,</p>
The post <a href="https://pointvoip.com/docs/using-the-switchboard/">Using the Switchboard</a> first appeared on <a href="https://pointvoip.com">PointVoIP</a>.]]></description>
										<content:encoded><![CDATA[<p class="wp-block-paragraph">For job roles where advanced call management is a daily task, the 3CX Switchboard is a powerful and user-friendly tool that offers a concise yet comprehensive view on call and queue activity.<br></p>



<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/eJrKxeaRaBQ"></iframe>



<p class="wp-block-paragraph">There are various Switchboard views to choose from depending on your job role, which allows for quick and efficient call answering and transfers, monitoring, queue statistics and more. Choose from:</p>



<ul class="wp-block-list"><li><strong>“All”</strong>&nbsp;&#8211; extension and queue calls</li><li><strong>“Queue Calls”</strong>&nbsp;&#8211; Queue call activity</li><li><strong>“Wallboard”</strong>&nbsp;&#8211; Call queue analytics</li><li><strong>“Per Queue”</strong>&nbsp;&#8211; calls and agents for each queue</li><li><strong>“Reminders”</strong>&nbsp;&#8211; View and manage all set&nbsp;<strong>“Reminders”</strong></li></ul>



<p class="wp-block-paragraph">To perform an action on a call simply right click on it to open the actions menu. You can even customize your view by clicking the pop-out icon to display them in a separate browser window, or configure view options in&nbsp;<strong>“Settings &gt; Switchboard”</strong>. To set custom messages and configure the Wallboard, head over to&nbsp;<strong>“Settings &gt; Switchboard”</strong>.</p>The post <a href="https://pointvoip.com/docs/using-the-switchboard/">Using the Switchboard</a> first appeared on <a href="https://pointvoip.com">PointVoIP</a>.]]></content:encoded>
					
					<wfw:commentRss>https://pointvoip.com/docs/using-the-switchboard/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Manage Your Status</title>
		<link>https://pointvoip.com/docs/manage-your-status/</link>
					<comments>https://pointvoip.com/docs/manage-your-status/#respond</comments>
		
		<dc:creator><![CDATA[user]]></dc:creator>
		<pubDate>Fri, 20 Nov 2020 04:12:55 +0000</pubDate>
				<guid isPermaLink="false">https://pointvoip.com/?post_type=docs&#038;p=7582</guid>

					<description><![CDATA[<p>Make the most of the Status feature to save time and increase efficiency by seeing which colleagues are available to take calls. Avoid distractions and set your own status to let others know when you’re away or you don’t want to be disturbed. Choose from&#160;Available,&#160;Away,&#160;Do Not Disturb,&#160;Lunch,&#160;Business Trip, and&#160;Set Status Temporarily. Further, customize your status</p>
The post <a href="https://pointvoip.com/docs/manage-your-status/">Manage Your Status</a> first appeared on <a href="https://pointvoip.com">PointVoIP</a>.]]></description>
										<content:encoded><![CDATA[<p class="wp-block-paragraph">Make the most of the Status feature to save time and increase efficiency by seeing which colleagues are available to take calls. Avoid distractions and set your own status to let others know when you’re away or you don’t want to be disturbed.</p>



<p class="wp-block-paragraph">Choose from&nbsp;Available,&nbsp;Away,&nbsp;Do Not Disturb,&nbsp;Lunch,&nbsp;Business Trip, and&nbsp;Set Status Temporarily.</p>



<p class="wp-block-paragraph">Further, customize your status in&nbsp;<strong>“Settings &gt; Call Forwarding”</strong>. Here you can:</p>



<ul class="wp-block-list"><li>Set a custom message</li><li>Enable/disable PUSH messages for each status</li><li>Rename&nbsp;<strong>“Lunch”</strong>&nbsp;and&nbsp;<strong>“Business Trip”</strong>&nbsp;profiles</li><li>Set the number of seconds to activate forwarding of unanswered calls for&nbsp;<strong>“Available”</strong>&nbsp;and&nbsp;<strong>“Lunch”</strong>&nbsp;profiles</li><li>Override forwarding rules based on Caller ID and time of the call</li></ul>The post <a href="https://pointvoip.com/docs/manage-your-status/">Manage Your Status</a> first appeared on <a href="https://pointvoip.com">PointVoIP</a>.]]></content:encoded>
					
					<wfw:commentRss>https://pointvoip.com/docs/manage-your-status/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Click to Call Extension</title>
		<link>https://pointvoip.com/docs/click-to-call-extension/</link>
					<comments>https://pointvoip.com/docs/click-to-call-extension/#respond</comments>
		
		<dc:creator><![CDATA[user]]></dc:creator>
		<pubDate>Fri, 20 Nov 2020 04:09:36 +0000</pubDate>
				<guid isPermaLink="false">https://pointvoip.com/?post_type=docs&#038;p=7579</guid>

					<description><![CDATA[<p>On Google Chrome Open the&#160;Google Chrome store&#160;and click on&#160;“Add to Chrome”&#160;to add the extension to your browser. Click&#160;“Add extension”&#160;in the pop-up window to install. The 3CX Click to Call extension icon will be visible in your browser’s top right corner. Open the&#160;3CX Web Client and refresh the page to automatically configure the Click to Call</p>
The post <a href="https://pointvoip.com/docs/click-to-call-extension/">Click to Call Extension</a> first appeared on <a href="https://pointvoip.com">PointVoIP</a>.]]></description>
										<content:encoded><![CDATA[<h4 class="wp-block-heading" id="h.89bmhxl3rnmt">On Google Chrome</h4>



<ol class="wp-block-list"><li>Open the&nbsp;<a href="https://chrome.google.com/webstore/detail/3cx-click-to-call/ingddacbmngapennhhfhnpjnaklakach">Google Chrome store</a>&nbsp;and click on&nbsp;<strong>“</strong><strong>Add to Chrome”</strong>&nbsp;to add the extension to your browser.</li><li>Click&nbsp;<strong>“</strong><strong>Add extension”</strong>&nbsp;in the pop-up window to install. The 3CX Click to Call extension icon will be visible in your browser’s top right corner.</li><li>Open the&nbsp;3CX Web Client and refresh the page to automatically configure the Click to Call extension.</li></ol>



<h4 class="wp-block-heading" id="h.6zzszo3s2v4h">On Mozilla Firefox</h4>



<ol class="wp-block-list"><li>Open the&nbsp;<a href="https://addons.mozilla.org/en-US/firefox/addon/3cx-clicktocall/">Firefox Add-ons</a>&nbsp;and click on&nbsp;<strong>“</strong><strong>+ Add to Firefox”</strong>&nbsp;to add&nbsp;the&nbsp;extension to your browser.</li><li>Click&nbsp;<strong>“</strong><strong>Add”</strong>&nbsp;in the pop-up window to install. The 3CX Click to Call extension icon will be visible in your browser’s top right corner.</li><li>Open the&nbsp;3CX Web Client and refresh the page to automatically configure the 3CX Click to Call extension.</li></ol>



<h4 class="wp-block-heading">Customize the Click to Call extension</h4>



<p class="wp-block-paragraph">To configure options for the Click to Call extension,&nbsp;click and select&nbsp;<strong>“Options”</strong>&nbsp;in Chrome or click on the extension icon in Firefox:</p>



<ul class="wp-block-list"><li><strong>“</strong><strong>Call via”</strong>&nbsp;&#8211; set to make calls via the &nbsp;3CX Web&nbsp;Client (v15.5+) or 3CX App for Windows.</li><li><strong>“</strong><strong>3CX Web Client FQDN”</strong>&nbsp;&#8211; the URL used to connect to the 3CX Web Client&nbsp;, configured automatically when the extension is installed,&nbsp;e.g.&nbsp;<strong>“</strong><strong>https://my-pbx.example.com/webclient”</strong></li><li><strong>“</strong><strong>Number Length”</strong>&nbsp;&#8211; the range of numbers (minimum to maximum) the extension detects.</li><li><strong>“Exceptions”</strong>&nbsp;&#8211; add website URLs to this list to skip number detection by the extension.</li></ul>The post <a href="https://pointvoip.com/docs/click-to-call-extension/">Click to Call Extension</a> first appeared on <a href="https://pointvoip.com">PointVoIP</a>.]]></content:encoded>
					
					<wfw:commentRss>https://pointvoip.com/docs/click-to-call-extension/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Sending a Virtual Fax</title>
		<link>https://pointvoip.com/docs/sending-a-virtual-fax/</link>
					<comments>https://pointvoip.com/docs/sending-a-virtual-fax/#respond</comments>
		
		<dc:creator><![CDATA[user]]></dc:creator>
		<pubDate>Fri, 20 Nov 2020 04:01:45 +0000</pubDate>
				<guid isPermaLink="false">https://pointvoip.com/?post_type=docs&#038;p=7574</guid>

					<description><![CDATA[<p>1. Log into your account at&#160;fax.pointvoip.com 2. Enter your 10 digit fax destination number in the box next to the flag icon 3. You can also use the contact button to simply select a recipient from your contact list. In this case you do not need to type out the fax number, the system will</p>
The post <a href="https://pointvoip.com/docs/sending-a-virtual-fax/">Sending a Virtual Fax</a> first appeared on <a href="https://pointvoip.com">PointVoIP</a>.]]></description>
										<content:encoded><![CDATA[<p class="wp-block-paragraph">1. Log into your account at&nbsp;<a href="https://fax.pointvoip.com/">fax.pointvoip.com</a></p>



<p class="wp-block-paragraph">2. Enter your 10 digit fax destination number in the box next to the flag icon<br></p>



<figure class="wp-block-image"><a href="https://downloads.intercomcdn.com/i/o/173736871/06b22bfb5a63526d13cd554d/image.png"><img decoding="async" src="https://downloads.intercomcdn.com/i/o/173736871/06b22bfb5a63526d13cd554d/image.png" alt="image.png"/></a></figure>



<p class="wp-block-paragraph">3. You can also use the contact button to simply select a recipient from your contact list. In this case you do not need to type out the fax number, the system will automatically send to the fax number associated with the contact<br></p>



<figure class="wp-block-image"><a href="https://downloads.intercomcdn.com/i/o/173736906/92c16a3774cda96058588b49/image.png"><img decoding="async" src="https://downloads.intercomcdn.com/i/o/173736906/92c16a3774cda96058588b49/image.png" alt="image.png"/></a></figure>



<p class="wp-block-paragraph"><strong>Here&#8217;s what your contact list will look like:</strong></p>



<figure class="wp-block-image"><a href="https://downloads.intercomcdn.com/i/o/173736974/a70b2e67f5c5714cf4112594/image.png"><img decoding="async" src="https://downloads.intercomcdn.com/i/o/173736974/a70b2e67f5c5714cf4112594/image.png" alt="image.png"/></a></figure>



<p class="wp-block-paragraph">4. Next, you may select the file you wish to upload, drag &amp; drop from your computer, or upload a file from your cloud storage<br></p>



<figure class="wp-block-image"><a href="https://downloads.intercomcdn.com/i/o/173737050/9d82641459195c790f9b75ac/image.png"><img decoding="async" src="https://downloads.intercomcdn.com/i/o/173737050/9d82641459195c790f9b75ac/image.png" alt="image.png"/></a></figure>



<p class="wp-block-paragraph"><strong>If you&#8217;d like to include a cover page simply check the box that says &#8220;include cover page&#8221;</strong></p>



<figure class="wp-block-image"><a href="https://downloads.intercomcdn.com/i/o/173737149/b768af9c57ed588f79272c31/image.png"><img decoding="async" src="https://downloads.intercomcdn.com/i/o/173737149/b768af9c57ed588f79272c31/image.png" alt="image.png"/></a></figure>



<p class="wp-block-paragraph">If you wish to add a tag to the fax (this will show up in your fax history) simply click in the tag search bar and search or add tags here:<br></p>



<figure class="wp-block-image"><a href="https://downloads.intercomcdn.com/i/o/173737215/4a8ae31b7f20c6e0fb1cd5c0/image.png"><img decoding="async" src="https://downloads.intercomcdn.com/i/o/173737215/4a8ae31b7f20c6e0fb1cd5c0/image.png" alt="image.png"/></a></figure>



<p class="wp-block-paragraph">Click the&nbsp;<strong>SEND</strong>&nbsp;button.</p>



<p class="wp-block-paragraph">That&#8217;s it. You will see a pop-up notification confirming your fax was sent.</p>



<p class="wp-block-paragraph">You can always check the status of a fax on your Fax History screen.</p>The post <a href="https://pointvoip.com/docs/sending-a-virtual-fax/">Sending a Virtual Fax</a> first appeared on <a href="https://pointvoip.com">PointVoIP</a>.]]></content:encoded>
					
					<wfw:commentRss>https://pointvoip.com/docs/sending-a-virtual-fax/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Create a Conference Call (Yealink)</title>
		<link>https://pointvoip.com/docs/create-a-conference-call-yealink/</link>
					<comments>https://pointvoip.com/docs/create-a-conference-call-yealink/#respond</comments>
		
		<dc:creator><![CDATA[user]]></dc:creator>
		<pubDate>Fri, 20 Nov 2020 04:00:12 +0000</pubDate>
				<guid isPermaLink="false">https://pointvoip.com/?post_type=docs&#038;p=7571</guid>

					<description><![CDATA[<p>In this example we will demonstrate how to make a conference call. This will work on the Yealink T46/48/53/54 models. Make or answer a call. Press the &#8220;Conference&#8221; soft key. Dial the number of the caller you wish to add to the conference call and press the “Send” soft key. When the called party answers,</p>
The post <a href="https://pointvoip.com/docs/create-a-conference-call-yealink/">Create a Conference Call (Yealink)</a> first appeared on <a href="https://pointvoip.com">PointVoIP</a>.]]></description>
										<content:encoded><![CDATA[<p class="wp-block-paragraph">In this example we will demonstrate how to make a conference call. This will work on the Yealink T46/48/53/54 models.</p>



<ol class="wp-block-list"><li>Make or answer a call.</li><li>Press the &#8220;<strong>Conference</strong>&#8221; soft key.</li><li>Dial the number of the caller you wish to add to the conference call and press the “<strong>Send</strong>” soft key.</li><li>When the called party answers, press the “<strong>Conference</strong>” soft key. The call will be added to the conference.</li></ol>



<p class="wp-block-paragraph">While in a conference call you can do the following:</p>



<ul class="wp-block-list"><li>Press the “<strong>Split</strong>” soft key to split the conference into two individual calls.</li><li>Press the “<strong>Hold</strong>” soft key to place the conference on hold.</li><li>Press “<strong>End Call</strong>” on the touchscreen, or the “<strong>Cancel</strong>” soft key to end the conference call.</li></ul>The post <a href="https://pointvoip.com/docs/create-a-conference-call-yealink/">Create a Conference Call (Yealink)</a> first appeared on <a href="https://pointvoip.com">PointVoIP</a>.]]></content:encoded>
					
					<wfw:commentRss>https://pointvoip.com/docs/create-a-conference-call-yealink/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Create a Conference Bridge</title>
		<link>https://pointvoip.com/docs/create-a-conference-bridge/</link>
					<comments>https://pointvoip.com/docs/create-a-conference-bridge/#respond</comments>
		
		<dc:creator><![CDATA[user]]></dc:creator>
		<pubDate>Fri, 20 Nov 2020 03:58:48 +0000</pubDate>
				<guid isPermaLink="false">https://pointvoip.com/?post_type=docs&#038;p=7569</guid>

					<description><![CDATA[<p>When you first sign up with us you are usually assigned a direct dial in number for conference calls. This guide will show you how to create a conference call with pin on the fly. Dial the conference bridge (This is usually 7000 or 700) You will be requested to enter a conference ID. This</p>
The post <a href="https://pointvoip.com/docs/create-a-conference-bridge/">Create a Conference Bridge</a> first appeared on <a href="https://pointvoip.com">PointVoIP</a>.]]></description>
										<content:encoded><![CDATA[<p class="wp-block-paragraph">When you first sign up with us you are usually assigned a direct dial in number for conference calls. This guide will show you how to create a conference call with pin on the fly.</p>



<ol class="wp-block-list"><li>Dial the conference bridge (This is usually 7000 or 700)</li><li>You will be requested to enter a conference ID. This can be any number, for example “1122” and will be the unique identifier (conference ID) for that specific conference session.</li><li>If you are the first participant, the conference interface will ask you to confirm creation of the conference. Press&nbsp;<strong>*</strong>&nbsp;to confirm or&nbsp;<strong>#</strong>&nbsp;to cancel.</li><li>You will be asked to speak your name after the beep and press a button to continue.</li><li>External callers can dial your external conference number. Internal callers can dial 7000 or 700.</li></ol>The post <a href="https://pointvoip.com/docs/create-a-conference-bridge/">Create a Conference Bridge</a> first appeared on <a href="https://pointvoip.com">PointVoIP</a>.]]></content:encoded>
					
					<wfw:commentRss>https://pointvoip.com/docs/create-a-conference-bridge/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Checking Your Voicemail</title>
		<link>https://pointvoip.com/docs/checking-your-voicemail/</link>
					<comments>https://pointvoip.com/docs/checking-your-voicemail/#respond</comments>
		
		<dc:creator><![CDATA[user]]></dc:creator>
		<pubDate>Fri, 20 Nov 2020 03:56:51 +0000</pubDate>
				<guid isPermaLink="false">https://pointvoip.com/?post_type=docs&#038;p=7566</guid>

					<description><![CDATA[<p>To check your voicemail from your desk phone: Pick up the handset and press the &#8220;Envelope&#8221; key or dial “9999”. You will then be asked for your voicemail PIN number. Type in your voicemail PIN number then press &#160;”#”. Follow the voice prompts to check or delete your voicemails. To check your voicemail from any</p>
The post <a href="https://pointvoip.com/docs/checking-your-voicemail/">Checking Your Voicemail</a> first appeared on <a href="https://pointvoip.com">PointVoIP</a>.]]></description>
										<content:encoded><![CDATA[<h4 class="wp-block-heading"><strong>To check your voicemail from your desk phone:</strong></h4>



<ol class="wp-block-list"><li>Pick up the handset and press the &#8220;<strong>Envelope</strong>&#8221; key or dial “<strong>9999</strong>”.</li><li>You will then be asked for your voicemail PIN number. Type in your voicemail PIN number then press &nbsp;”<strong>#</strong>”.</li><li>Follow the voice prompts to check or delete your voicemails.</li></ol>



<h4 class="wp-block-heading"><strong><br>To check your voicemail from any phone in your office:</strong></h4>



<ol class="wp-block-list"><li>Pick up the handset and press the &#8220;<strong>Envelope</strong>&#8221; key or dial “<strong>9999</strong>”.</li><li>Press “<strong>#</strong>”.</li><li>You will be asked to enter your extension number, type in your extension number.</li><li>You will then be asked for your voicemail PIN number. Type in your voicemail PIN number then press &nbsp;”<strong>#</strong>”.</li><li>Follow the voice prompts to check or delete your voicemails.</li></ol>The post <a href="https://pointvoip.com/docs/checking-your-voicemail/">Checking Your Voicemail</a> first appeared on <a href="https://pointvoip.com">PointVoIP</a>.]]></content:encoded>
					
					<wfw:commentRss>https://pointvoip.com/docs/checking-your-voicemail/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
