You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am developing a custom supervisor dashboard using the Amazon Connect Streams API. The primary goal is to provide supervisors with the ability to perform silent monitoring and barge-in functionality on ongoing calls.
Current Setup:
I am using the Amazon Connect Streams API to manage agent interactions.
I can successfully retrieve contact details, such as ContactId, using the GetCurrentMetricData API which i wrote in Lambda function.
I want to enable supervisors to silently monitor active calls and barge-in.
Problem:
I haven't found any direct methods within the Amazon Connect Streams API documentation that support silent monitoring or barge-in functionality for another agent. I'm looking for guidance on how to implement them effectively.
The text was updated successfully, but these errors were encountered:
You can't use the Streams API to initiate silent monitoring, you have to use a the public API MonitorContact for this. This is because in the default CCP, monitoring is initiated through the Real Time Metrics page and not in the CCP.
Once monitoring has been initiated, you can barge in to a call or chat using the contact.bargeIn() Streams API and you can switch back to silent monitoring in a call or chat using the contact.silentMonitor() Streams API.
I am developing a custom supervisor dashboard using the Amazon Connect Streams API. The primary goal is to provide supervisors with the ability to perform silent monitoring and barge-in functionality on ongoing calls.
Current Setup:
Problem:
I haven't found any direct methods within the Amazon Connect Streams API documentation that support silent monitoring or barge-in functionality for another agent. I'm looking for guidance on how to implement them effectively.
The text was updated successfully, but these errors were encountered: