Accessing participant data in Salesforce

As per the documentation for screen pop:

the keys which are part of interaction:

We are getting “attributeData:: null” inside onScreenPop method.

String attributeData = (String) interaction.get('attributes');

Also, Salesforce is not setting the value for tfnDialed in this method we are just retrieving the data using below code which is send by Genesys.

String tfnDialed = (String) interaction.get(‘calledNumber’);

Does anyone know what we need to do to access custom participant data in salesforce?

Thanks

Per the docs in your second link, interaction.get('attributes') is going to return an array, not a string.

Thank you for the response. We are still getting a null with the following -

List attributeData = (List) interaction.get('attributes');

This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.