Hi Everyone
I have an request from our customer about notification sound end call like beep or anything our client used all cisco jabber. because the condition now we replace from Avaya to cisco PCCE and then our customer says on avaya now after end call can give notification sound so the agent know if the call is ended.
The challenges is cisco can give the notification sound after call ended?
as i know the script announcement is used for incoming not for end call and then i try on the cucm but no clue for the configuration.
Solved! Go to Solution.
Your best bet is going to be around creating a custom gadget that watches the state of the agent and when it goes from Talking to something else send some sort of notification. Playing a sound on the phone is not going to be possible as the call has now dropped, but maybe playing a local (computer) sound would be possible.
david
@david.macias wrote:Your best bet is going to be around creating a custom gadget that watches the state of the agent and when it goes from Talking to something else send some sort of notification. Playing a sound on the phone is not going to be possible as the call has now dropped, but maybe playing a local (computer) sound would be possible.
david
good news our team @septianadiherlambang28153 already try as you suggest and work for now. below snippet code w used for play the audio after reason change to WorkReady
handleUserChange = function(userevent) { var currentState = user.getState(); clientLogs.log("currentState :" + currentState); if(currentState==="WORK_READY"){ var audio2 = new Audio('https://(FQDN-Finesse)/3rdpartygadget/files/EndCall.wav'); audio2.play(); } };
Your best bet is going to be around creating a custom gadget that watches the state of the agent and when it goes from Talking to something else send some sort of notification. Playing a sound on the phone is not going to be possible as the call has now dropped, but maybe playing a local (computer) sound would be possible.
david
@david.macias wrote:Your best bet is going to be around creating a custom gadget that watches the state of the agent and when it goes from Talking to something else send some sort of notification. Playing a sound on the phone is not going to be possible as the call has now dropped, but maybe playing a local (computer) sound would be possible.
david
good news our team @septianadiherlambang28153 already try as you suggest and work for now. below snippet code w used for play the audio after reason change to WorkReady
handleUserChange = function(userevent) { var currentState = user.getState(); clientLogs.log("currentState :" + currentState); if(currentState==="WORK_READY"){ var audio2 = new Audio('https://(FQDN-Finesse)/3rdpartygadget/files/EndCall.wav'); audio2.play(); } };