Nodejs Sdk - How to resolve connect.describeContact is not a function?

0

I am trying to make a call to describeContact operation using the AWSJavaScriptSDK. I am following the documentation but somehow the call is not working. Below is my code.

const params = {
  ContactId: 'some_value', 
  InstanceId: 'some_value'
};

const attributes = await connect.describeContact(params).promise();

I receive -

connect.describeContact is not a function

Interestingly, when I replace describeContact with getContactAttributes in the call, I no longer receive "not a function" error and it works just fine (after I change the params). Both the operations have exactly the same signature.

Can someone please guide me here ?
Connect api version = 2017-08-08

Upgrading to the latest version of aws-sdk didn't help either.

Naxi
demandé il y a 2 ans223 vues
1 réponse
0

Hi,

there error can indicate two things:

  1. There is a invisible character since it errors with connect.describe and not connect.describeContact
  2. Most likely - You need to update your aws-sdk dependency. describeContact() is a preview one and may not included in the SDK version you currently use.

Best

profile pictureAWS
faddi
répondu il y a 2 ans
  • Sorry for not posting the exact error. It says - connect.describeContact is not a function. And I already tried updating the sdk to latest avaialble version. I still get the same error for this particular function.

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions