cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
577
Views
5
Helpful
4
Replies

Playing a different prompt depending of the called trigger, but just one script

bertrandfx
Level 1
Level 1

Hello,

I want to configure an UCCX application for a helpdesk center in this manner:

-Two triggers for my helpdesk application

Is it possible to play a specific prompt depending of the trigger which is called ? Maybe is it possible, but how to configure this in the UCCX script ?

I want to play a welcome prompt when the trigger 1 is called, and another welcome prompt when trigger 2 is called.

Other prompts in the script are unique, only the welcome prompts must be different depending the called trigger.

At the end, the pool of agent are the same. They answer to both called trigger, trigger 1 and 2.

Thanks for your help.

Regards

Bertrand

1 Accepted Solution

Accepted Solutions

Chakshu Piplani
Cisco Employee
Cisco Employee

You can use the following steps to achieve this:

-"Get Call Contact Info" Step to get called number (trigger number) and put it into a variable number_called.

-"if" step to check which trigger is called and play the welcome prompt accordingly.

if number_called == xxxx

true

play welcome 1

False

play welcome 2

HTH

Regards,

Chakshu

View solution in original post

4 Replies 4

Chakshu Piplani
Cisco Employee
Cisco Employee

You can use the following steps to achieve this:

-"Get Call Contact Info" Step to get called number (trigger number) and put it into a variable number_called.

-"if" step to check which trigger is called and play the welcome prompt accordingly.

if number_called == xxxx

true

play welcome 1

False

play welcome 2

HTH

Regards,

Chakshu

And if you have more than two, you can also use "switch" step

Thank you Sean. I have just two . But I will test the switch test, if one day I have to use it.

bertrandfx
Level 1
Level 1

Thank you Chaksu ;)