2 Respostas
- Mais recentes
- Mais votos
- Mais comentários
1
Hi Vito.
Great news for you!!
Amazon Connect launches an API to programmatically stop queued callbacks.
You can use the API to avoid duplicated callback.
Amazon Connect launches an API to programmatically stop queued callbacks
Thank you.
respondido há 2 anos
0
Hi.
I’m not sure if StopContact API will support Callback.
It is impossible to remove contact from callback queue, but prevent duplicate inbound call.
Please check the following blog for solutions that may meet your requirements.
Preventing duplicate callback requests in Amazon Connect
I hope this helps you.
respondido há 2 anos
Conteúdo relevante
- AWS OFICIALAtualizada há 2 anos
- AWS OFICIALAtualizada há 6 meses
- AWS OFICIALAtualizada há 2 anos
Hi ippei_N, Thanks for your reply. Our contact centre already has a very similar solution in place to prevent duplicate callbacks. This is not the issue i am trying to resolve.
My question relates to customers who already have queued callbacks in place, calling through on a higher priority queue in order to circumvent waiting for their callback.
Now i understand there is no way to implement a solution to stop this behaviour from our customers... but once they have called a high priority queue and spoken with an agent, their callback remains in the lower priorirty queue increasing volume and wait time unnecessarily, as they generally have had their issues resolved on the higher priority line.
@Vito Hi Viro. Sorry for my late response.
There is no way to remove a call from the callback queue. As an idea to remedy the problem, how about the following?
The callback first receives an incoming call to the agent and then outbound whisper flow. Create a DynamoDB table that records the customer's phone number and the time of the last callback, and check that table in the agent's custom CCP onIncoiming event or in the outbound whisperflow Lambda function call. If the last callback timestamp is recent, add a process to disconnect the call.
I hope this helps you.