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.

1 Risposta
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"
      }
   }
}
con risposta 2 anni fa
profile pictureAWS
ESPERTO
verificato un anno fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande