How to get the Salesforce Account fields using aws lambda?

0

Hi, I am trying to get the Salesforce Accounts Fields from aws lambda function, it does return the Salesforce Contact Fields like Id, Name, Email and other Fields but giving me the error

"errorMessage": "INVALID_FIELD: No such column 'City_CB__c' on entity 'Contact'. If you are attempting to use a custom field, be sure to append the '__c' after the custom field name. Please reference your WSDL or the describe call for the appropriate names.",
  "errorType": "Exception" 

when tried to get the Accounts fields.

I am following this documentation https://connect-blogs.s3.amazonaws.com/Amazon+Connect+Salesforce+CTI+Adapter/Amazon+Connect+CTI+Adapter+for+Salesforce+Lightning+-+Setup+and+Installation+Guide.pdf#page=68&zoom=100,121,298

And my event format is:

{
   "Details":{
      "Parameters":{
          "name":"Accounts",
          "sf_operation":"phoneLookup",
          "sf_phone":"[PhoneNumber]",
          "sf_fields":"Id, Name, Email, City_CB__c"
      }
   }
}

It returns the Contact fields but not the Account fields.

gefragt vor 2 Jahren391 Aufrufe
1 Antwort
0

After a lot of brainstorming i got to know you just have to add account. in start of the fields to get the Account Fields.

{
   "Details":{
      "Parameters":{
          "sf_operation":"phoneLookup",
          "sf_phone":"[PhoneNumber]",
          "sf_fields":"account.Id, account.Name, account.Email, account.City_CB__c"
      }
   }
}
beantwortet vor 2 Jahren
profile pictureAWS
EXPERTE
überprüft 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