How to get agent details for any particular contact in Amazon Connect using Amazon Connect SDK for Javascript?

0

Building a lambda that fetches the agent details like Agent Name, Id for any particular contact ID in Amazon Connect using the aws-sdk-javascript

rahul
preguntada hace un año732 visualizaciones
2 Respuestas
1

if you have a ContactID and you need to get the user name that handled the contact. It is a two step process.

First use describeContact with the ContatID https://docs.aws.amazon.com/connect/latest/APIReference/API_DescribeContact.html if the contact is handled by an agent, the AgentInfo will have an object in the response with the "Id" which is the agent id but you still do not have the actual user name.

then using the agent id, call DescribeUser https://docs.aws.amazon.com/connect/latest/APIReference/API_DescribeUser.html then you will get the name of the user and the rest of the user info

To avoid hitting the API limit, best practice is to cache the DescribeUser info into a table like DynamoDB. So you can query DynamoDB to get the username without using the Connect API DescribeUser everytime if this is used a lot.

profile pictureAWS
respondido hace un año
  • This works. Do you know if there are any other APIs that can extract details like: Connect to agent timestamp ACW (start, end, duration) Interaction duration

  • DescribeContact will get you "ConnectedToAgentTimestamp" but not ACW start/stop, which need the actual CTR to get, as well as interaction duration

-2

Hello!

We can make use of AgentInfo API call. [+] https://docs.aws.amazon.com/connect/latest/APIReference/API_AgentInfo.html

Thank you!

AWS
respondido hace un año

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas