VoicePulse Free Trial til December

Yes, it's still true that we require a signed copy of our Terms of Service to fully activate your account. Trust us, we would really like to automate simple processes such as sign up! We've tried everything to get credit card companies and banks to enforce online "signatures" (per the E-sign Act). However, without a physical signature, the credit card companies can always reject our fraud claim by saying "well, you don't have a signature, so it's your fault", leaving us with no protection against fraud.

Normally, we would accept this as a cost of doing business, but we have already been hit by fraud in 2005 for a loss of well over $200,000. During a 6-month period, a group of fraudsters signed up for accounts with VoicePulse as well as other providers. They were using IP addresses in the US (PCs they had hacked into) and valid credit card numbers and CVC codes (from widely publicized stolen databases). The credit card companies only offer the most primitive of fraud prevention -- address and CVC code matching. When the fraudulent customers have all of this information, and it's correct, we're helpless to detect these accounts at sign up. At the end of that period, five or more VoIP providers declared bankruptcy or were involved in litigation to avoid paying their debts. VoicePulse was fortunate enough to be able to survive the loss, but it was obvious that we could no longer leave ourselves exposed.

Since implementing a requirement to fax (or scan-and-email) back a signed Terms of Service form two years ago, we have had zero fraudulent accounts. While we may relax some of the requirements in the future, it's hard to overlook the effectiveness of this method. Keeping our level of fraud so low is the only reason we can offer rates below 1¢ to anyone who wants to sign up, without a minimum commitment or multi-year contract.

We hope the minor inconvenience will be offset by our ability to demonstrate that we're putting the money to good use by investing in our infrastructure and support teams, instead of giving free calls to thieves and passing the costs onto our customers.
 
Thanks for the feedback, Ward. As far as I know, we added PBX-in-a-Flash to all relevant pages on our Connect website back in January.
 
PiaF wasn't there a few days ago when I looked.

Hey, how about posting something about your billing, increments, minimum call charges, minimum refill or balance requirement, Paypal?. Or post a link. I don't see that posted prominently. Are all calls rounded?
 
As we offer multiple products, detailed pricing information is usually best clarified by talking to one of our representatives.

The following was valid for the VoicePulse Connect for Asterisk product in March 2008:

Durations are in 6 second increments and costs are rounded up to the nearest penny. We only accept credit cards, unless you have a wholesale arrangement or we've designed a custom solution for you. There is an option to auto-refill, with a minimum increment of $25. Phone number and channel costs are deducted on the 1st of every month.

Again, we invite any discussions of custom pricing and urge you to call in, as it's hard to lay out pricing for everyone on a generalized forum.
 
I like the service, but... here's a little constructive criticism. I'm a little concerned that your custom app to price-compare rates pretty much hijacks the outbound dialplan. In other words, if my specified target rate is .014, then VoicePulse gets the calls that are cheaper and ONE provider gets the rest of the calls regardless of where VoicePulse appears in the outbound routes list in FreePBX.

The logic of FreePBX works like this... once a trunk qualifies as the "winner" in the outbound routes list, the other outbound route options don't get visited even if the "winner" trunk fails. The FreePBX solution is to allow me to provide a hierarchy of trunks in sequence for every particular outbound route. Thus, the correct approach for VoicePulse would be to let users place your route anywhere in the sequence of outbound trunks. For example, I might want to use my DID provider for 911 calls because I'm already paying for that. And, for offices that interconnect between sites (for free) with custom outbound routes (something Nerd Vittles is addressing this week), all of that stops working if VoicePulse is used.

In short, once your route qualifies for a call, then the cost test could be performed and, if VoicePulse loses, then alternate trunks could be specified just like the existing FreePBX approach. But you shouldn't hijack all of the other outbound routes and their specific rules and sequencing.

The other problem is another matter of flexibility. If VoicePulse loses the cost test and the provider I've chosen as my backup provider happens to be DOA, then ALL outbound calls fail. We use six providers, four of which would be useless under the VoicePulse design. :cool:

The uninstall also needs a little refinement. You still have to manually remove the VoicePulse trunks and the custom code inserted into extensions_custom.conf before any of your other outbound routes will start working again.
 
I modified the VoicePulse scripts to send calls under the target rate to one FreePBX outbound route and over the target rate to another. I can then have several providers under each choice target or all providers in a different order for each choice. It's worked well since 9-07.

Below is what I added to extensions_custom.conf

[from-internal-custom]

exten => _1800NXXXXXX,1,Goto(outrt-004-TollFree,${EXTEN},1)
exten => _1822NXXXXXX,1,Goto(outrt-004-TollFree,${EXTEN},1)

...

exten => _877NXXXXXX,1,Goto(outrt-004-TollFree,${EXTEN},1)
exten => _888NXXXXXX,1,Goto(outrt-004-TollFree,${EXTEN},1)
exten => _1NXXNXXXXXX,1,Goto(custom-VP-Flex,${EXTEN},1)
exten => _NXXNXXXXXX,1,Goto(custom-VP-Flex,1${EXTEN},1)
exten => _NXXXXXX,1,Goto(custom-VP-Flex,1301${EXTEN},1)


[custom-VP-Flex]
exten => _1NXXNXXXXXX,1,Set(OTHER_PROVIDERS_FLAT_RATE=0.012)
exten => _1NXXNXXXXXX,n,Set(VOICEPULSE_API_KEY="insert your key")
exten => _1NXXNXXXXXX,n,Set(VOICEPULSE_API_PREFIX=VOICEPULSE_)
exten => _1NXXNXXXXXX,n,Macro(voicepulseflexrate,${VOICEPULSE_API_KEY},${EXTEN})
exten => _1NXXNXXXXXX,n,Verbose(The rate is ${VOICEPULSE_FLEXRATE})
exten => _1NXXNXXXXXX,n,GotoIf($[${VOICEPULSE_FLEXRATE} > ${OTHER_PROVIDERS_FLAT_RATE}]?${EXTEN}|700)
exten => _1NXXNXXXXXX,n,Goto(outrt-006-VP-OUT,${EXTEN},1)
exten => _1NXXNXXXXXX,700,Goto(outrt-007-out1,${EXTEN},1)

[macro-voicepulseflexrate]
exten => s,1,Set(${VOICEPULSE_API_PREFIX}FLEXRATE=999)
exten => s,2,Set(${VOICEPULSE_API_PREFIX}FLEX_RATE=999)
exten => s,n,Set(VoicePulsePostData=ApiKey=${ARG1}&PhoneNumber=${ARG2})
exten => s,n,Set(VoicePulseResponse=${CURL(https://connect.voicepulse.com/secure/services/Api0605.asmx/AstGetFlexRate|${VoicePulsePostData})})
exten => s,n,Macro(voicepulseparseresponse,${VoicePulseResponse})

[macro-voicepulseparseresponse]
exten => s,1,Set(VoicePulseTemp=${ARG1})
exten => s,n,Set(VoicePulseTemp=${CUT(VoicePulseTemp,>,2-)})
exten => s,n,Set(VoicePulseTemp=${CUT(VoicePulseTemp,>,2-)})
exten => s,n,Set(VoicePulseTemp=${CUT(VoicePulseTemp,<,1)})
exten => s,n,Set(VoicePulseCounter=${FIELDQTY(VoicePulseTemp,~)})
exten => s,n,While($[${VoicePulseCounter} > 0])
exten => s,n,Set(VoicePulsePair=${CUT(VoicePulseTemp,~,${VoicePulseCounter})})
exten => s,n,Set(VoicePulseKey=${CUT(VoicePulsePair,=,1)})
exten => s,n,Set(VoicePulseValue=${CUT(VoicePulsePair,=,2)})
exten => s,n,Set(${VOICEPULSE_API_PREFIX}${VoicePulseKey}=${VoicePulseValue})
exten => s,n,Set(VoicePulseCounter=$[${VoicePulseCounter}-1])
exten => s,n,EndWhile()
 
VoicePulse Now Offers Failover

We have added a failover feature which will allow your incoming calls to roll over to a PSTN number if there is a problem with your trixbox server registering with our service.

If you activate before 11:59:59 PM October 31st 2008, there is a 75% discount on the failover activation fee!
 
I just have one question, how come you charge for failover service when other companies do this and charge for just the minutes used?
 
mruge,

Thanks for the question regarding our pricing. We have determined that it's in our best interest to offer our services at a fair and profitable price. This will allow us to maintain our position as a strong and growing pure-play VoIP provider in a marketplace that is starting to see providers cut staff and go bankrupt. VoicePulse on the other hand has expanded DID coverage into new states, launched new features, debuted a new website, deployed new hardware in all of our datacenters, and hired new employees -- all in the last 3 months!

If you are a hobbyist or home user, our SIP trunking products might not be right for you. You might be better served by our Home / Home Office products. On the other hand, if you are a business that has made a serious commitment to switching to VoIP with the help of a solid product like PBX in a Flash, our products offer impressive reliability and custom features that our competitors don't and at a bargain compared to POTS.

While our failover feature may not fit your budget for experimenting with VoIP, we're confident that you'll be able to sell a reliable PiaF + VoicePulse solution to your customers who value reliability over dirt cheap prices.
 
Thank you. That was exactly what I was wanting to know.
 
The ease of setup makes VoicePulse connect fantastic.
However, I was not able to port my phone number, which is a dealbreaker. I'll be switching to something else, probably axvoice
 
jrubins,

Thanks for the feedback regarding VoicePulse's ease of setup. The PBX in a Flash module is a real time-saver for our customers.

Porting is a real pain sometimes -- sorry we couldn't address your needs. What area were you trying to port from?
 
If you've been holding out on signing up for a trial account -- wait no longer!

We've just updated our sign-up process to allow PBX-in-a-Flash users to add phone numbers, channels and other upgrades without an activation fee.

Therefore, anyone who signs up today will be able to try out all of our features, free-of-charge until the 1st of the month.
 
VoicePulse's Special Free Trial Offer - this week only - Dec 8-12

For this week only (until 11:59:59 PM ET on Friday Dec 12th 2008), VoicePulse is extending a special offer to all PBX in a Flash users...

Sign up for our FREE trial at http://www.voicepulse.com/connect/trial.aspx and get the following:

* $2 in free credit to make calls
* $0 fee to move your numbers from another SIP trunking provider to VoicePulse (normally $25/number)
* $0 activation charge on DIDs added during signup (normally $11)
* $0 activation charge on additional channels added during signup (normally $20)
* $0 activation charge on failover added during signup (normally $20)

We're confident that VoicePulse for Business & Wholesale will far exceed your old SIP provider in terms of price, reliability, and convenience.

If you don't agree, cancel before 11:59:59 PM ET on Dec 31st and get a refund of your remaining pre-paid deposit. Total cost to you: $0.

In addition, for every unique PBX in a Flash user from this week that remains a VoicePulse customer (in good-standing, past Jan 1st), we will make a one-time $5/user donation to pbxinaflash.com via their Paypal link.

To speak to someone at VoicePulse regarding this offer, our services, or for volume discounts, please call +1-732-339-5100 M-F 9am-5pm.
 

Members online

No members online now.

Forum statistics

Threads
26,687
Messages
174,410
Members
20,257
Latest member
Dempan
Get 3CX - Absolutely Free!

Link up your team and customers Phone System Live Chat Video Conferencing

Hosted or Self-managed. Up to 10 users free forever. No credit card. Try risk free.

3CX
A 3CX Account with that email already exists. You will be redirected to the Customer Portal to sign in or reset your password if you've forgotten it.
Back
Top