I have passed the customFields data to the raise ticket node. this is the data looks like:
[
{
"label": "Source",
"value": data.variables.origin,
"transcriptFields": [
"Source__c"
],
"displayToAgent": true
},
{
"label": "Chat Transcript URL",
"value": data.variables.chatTranscriptUrl,
"transcriptFields": [
"Chat_Transcript_URL__c"
],
"displayToAgent": true
},
{
"label": "Contact Name",
"value": data.variables.contactId,
"transcriptFields": [
"ContactId"
],
"displayToAgent": true
},
{
"label": "CaseId",
"value": data.variables.caseId,
"transcriptFields": [
"CaseId"
],
"displayToAgent": true
},
{
"label": "Phone Number",
"value": data.variable.phone,
"transcriptFields": [
"Phone_Number__c"
],
"displayToAgent": true
}
]
However, the data is not sent to the salesforce. Can someone guide me?