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
gefragt vor einem Jahr732 Aufrufe
2 Antworten
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
beantwortet vor einem Jahr
  • 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
beantwortet vor einem Jahr

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen