Hello, please your support with this case.
I'm trying to pass the customerID field at runtime, but the interaction details tab is not showing that field.
I have the following code:
function getAdvancedConfig() {
return {
form: {
autoSubmit: true,
firstname: 'Praenomen',
lastname: 'Gens',
email: 'praenomen.gens@calidumlitterae.com',
customerId: '231321321'
},
formJSON: {
wrapper: '<table></table>',
inputs: [
// Default fields
{
id: 'cx_webchat_form_firstname',
name: 'firstname',
maxlength: '100',
placeholder: 'Required',
label: 'First Name'
},
{
id: 'cx_webchat_form_lastname',
name: 'lastname',
maxlength: '100',
placeholder: 'Required',
label: 'Last Name'
},
{
id: 'cx_webchat_form_email',
name: 'email',
maxlength: '100',
placeholder: 'Required',
label: 'Email'
},
{
id: 'cx_webchat_form_customerId',
name: 'customerId',
maxlength: '100',
placeholder: 'Required',
label: 'customerId'
},
]
}
};
}
What could be happening?.
If I change the autoSubmit parameter to false, I enter through the form, if it happens to pass the customerID. But what I need is for you to enter the chat to Genesys at runtime.