We've Moved! Please visit our new and improved forum over at our new portal: https://portal.plumvoice.com/hc/en-us/community/topics

Transfer Call straight to an extension

Questions and answers about IVR programming for Plum DEV

Moderators: admin, support

Post Reply
acadenilla
Posts: 55
Joined: Wed Oct 31, 2007 11:02 am

Transfer Call straight to an extension

Post by acadenilla »

What is the syntax to transfer call straight to an extension??

Thanks

Allan

support
Posts: 3632
Joined: Mon Jun 02, 2003 3:47 pm
Location: Boston, MA
Contact:

IVR code to transfer call straight to an extension

Post by support »

Hi,

The <transfer> tag is used in this IVR syntax:

Code: Select all

<transfer dest="tel:+11234567890;postd=1234"/>
Hope this helps.

Regards,
Plum Support
Last edited by support on Tue Jan 12, 2010 12:32 pm, edited 3 times in total.

acadenilla
Posts: 55
Joined: Wed Oct 31, 2007 11:02 am

Post by acadenilla »

Is there another syntax?

Code: Select all

<transfer dest="tel:+11234567890;p1p2p3p4"/> 

support
Posts: 3632
Joined: Mon Jun 02, 2003 3:47 pm
Location: Boston, MA
Contact:

IVR support team needs further clarification

Post by support »

Hi,

Could you please provide more details as to what you're trying to do with your IVR application?

Regards,
Plum Support
Last edited by support on Mon Dec 28, 2009 1:42 pm, edited 1 time in total.

acadenilla
Posts: 55
Joined: Wed Oct 31, 2007 11:02 am

Post by acadenilla »

its ok i will use the postd

thanks

acadenilla
Posts: 55
Joined: Wed Oct 31, 2007 11:02 am

Post by acadenilla »

To get mine to completely work i had add a "p" in the syntax

Code: Select all

<transfer dest="tel:+11234567890;postd=p1234"/> 

acadenilla
Posts: 55
Joined: Wed Oct 31, 2007 11:02 am

Getting duration and filesize of recordcall

Post by acadenilla »

what is the syntax to get the call duration and filesize when using the
record property?

Code: Select all

<property name="recordcall" value="true" />

recordcall$.duration?
Allan

support
Posts: 3632
Joined: Mon Jun 02, 2003 3:47 pm
Location: Boston, MA
Contact:

IVR code- duration and size correspond to <record> tag

Post by support »

Hi,

There isn't any IVR syntax for how to get the duration and file size for the IVR property, "recordcall". The shadow variables, "duration" and "size", only correspond to the IVR tag, <record>.

Hope this is helpful.

Regards,
Plum Support
Last edited by support on Wed Feb 24, 2010 3:59 pm, edited 5 times in total.

acadenilla
Posts: 55
Joined: Wed Oct 31, 2007 11:02 am

Post by acadenilla »

Do you know any way to calculate or get the duration for the recording?

acadenilla
Posts: 55
Joined: Wed Oct 31, 2007 11:02 am

Post by acadenilla »

this is what i got


duration (secs) = (Filesize (kb) * 8) / (bit rate (kb) )

http://digitalramblings-0612.blogspot.c ... sizes.html

acadenilla
Posts: 55
Joined: Wed Oct 31, 2007 11:02 am

Post by acadenilla »

duration (secs) = (Filesize (kb) * 8 / (bit rate (kb) )

support
Posts: 3632
Joined: Mon Jun 02, 2003 3:47 pm
Location: Boston, MA
Contact:

IVR support team agree with user

Post by support »

Yes, that formula in your IVR code will calculate the duration for you.

Post Reply