Hello,
I have a task which calls a lambda function, to that function I pass the following request:
{
“run_id” : “<<[run_id]>>”,
“id” : “<<[id]>>”
}
the return response coming from lambda is as follows:
{
“statusCode”: 200,
“headers”: {
“Content-Type”: “application/json”
},
“body”: “Modified”
}
I also have a table that looks like this
[ id | run_id | status ]
Now I want the value of “body” to be stored on column “status” upon call of task from process.
So I setup my process as such:
I tried “[Call Webhook].[body]” on the formula beside ‘status’ on my process, but I get the error:
“Output ‘status’ is invalid: Error in expression ‘[Call Webhook].[body]’ : Unable to find table ‘Call Webhook Output’”
I couldn’t understand the documentation. Please help me understand what I am doing wrong.
