Help! I have piece of code that works when in a Manually Triggered Flow, but the same code fails in a Scheduled Cloud Flow.
Manual triggered flow
1. Get file content (raw output)
"body": {
"$content-type": "application/octet-stream",
"$content": "77u/Y2xhZS50LmFuZGVyc29uQGtwLm9yZyxBbm........
2 Initialize Variable raw input
{
"variables": [
{
"name": "csvArray",
"type": "Array",
"value": [
"�Ian.......
"leonard.....
"nancy.i.....
"andre.....
]
}
]
}
Scheduled Cloud Flow
1. Get file content (raw output)
"body": {
"$content-type": "application/octet-stream",
"$content": "77u/Y2xhZS50LmFuZGVyc29uQGtwLm9yZyxBbm........
2 Initialize Variable raw input
{
"variables": [
{
"name": "csvArray",
"type": "Array"
}
]
}
No value field! I scoured the internet, but cannot find a solution or cause.