Amazon Connect Queues

0

We are having issues with Amazon Connect callback queues sending contacts to agents outside of the queue's hours of operation We are trying to mitigate this problem by capturing the callback request and creating a record in a Dynamo table with the intent of programmatically controlling when the callback happens. The problem is that we can't seem to figure out how to create a contact in code. Perhaps we are not approaching the problem correctly. Any guidance is much appreciated.

1개 답변
0

There is no out of the box way to programmatically schedule a callback. But there are two other options:

  1. https://github.com/aws-samples/amazon-connect-callback-helper follow this to do a schedule callback. It uses a schedule outbound call with information to request a callback at a specified time

  2. Without using a schedule outbound call to, you can create various branch to execute the transfer to queue with callback with a different initial delay in the parameter. Although the initial delay cannot be dynamic, you can have multiple xfer to q with 1 hr, 2 hr.... 10 hr initial delay separately, and figure out what is the current time (using a Lambda function) and use Check Contact Attribute to branch to different initial delay.

When Initial Delay is use, the contact is put into a "scheduled" state and even with agent available, they will not be reached until the delay is finished and move into the queue.

https://docs.aws.amazon.com/connect/latest/adminguide/transfer-to-queue.html#transfer-to-queue-properties

profile pictureAWS
답변함 일 년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠