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
feita há um ano732 visualizações
2 Respostas
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 há um ano
  • 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 há um ano

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas