Hello,
I have a trigger configured that triggers a flow, the purpose of it is to insert as an attribute of a conversation its own transcript.
The flow is composed of 3 data actions.
1. Get the communicationid based on the conversationid --> UI/Flow OK
2. Obtain the url of the transcript --> UI/Flow OK
3. Access the url and save the content in a variable --> UI OK-Flow Failure.
The problem comes with this third data action, in the ui it works in 100% of the cases correctly, in the flow it goes through the failure branch 98% of the times.
The problem is that in the performance of the data action, it shows that it executes correctly 100% of the time, without any error.
This is my data action,
Some help with that?
BR
{
"name": "5.Get Transcript Messages ",
"integrationType": "custom-rest-actions",
"actionType": "custom",
"config": {
"request": {
"requestUrlTemplate": "${input.url}",
"requestType": "GET",
"headers": {},
"requestTemplate": "${input.rawRequest}"
},
"response": {
"translationMap": {},
"translationMapDefaults": {},
"successTemplate": "{\"raw_json\": \"$esc.jsonString(${rawResult})\"}"
}
},
"contract": {
"input": {
"inputSchema": {
"type": "object",
"properties": {
"url": {
"type": "string"
}
},
"additionalProperties": true
}
},
"output": {
"successSchema": {
"type": "object",
"properties": {
"raw_json": {
"type": "string"
}
},
"additionalProperties": false
}
}
},
"secure": false
}
#ArchitectureandDesign#Integrations------------------------------
Adrian Rodriguez
EOS Spain S.L.
------------------------------