Hello,
My client is interested in automating some of their workflows. One of their applications is hosted on AWS Lambda as a series of Python functions. I’ve tested calling the Lambda functions from Zapier with Invoke Function (Sync) and this works. But I haven’t found a way to use the data returned from the Lambda function in subsequent Zapier steps.
The Lambda function returns flat JSON results, and these show up when I test the step, as “Result Json Body” and “Result Json Status Code”, but I can’t see a way to actually use this data, for example to send a message via Slack.
Here is an anonymised sample of the sort of data our function is returning:
{
"last_operation_time": "2025-02-04T11:26:43.989Z",
"email": "hello@example.com",
"firstname": "Alice",
"user_id": "123456",
"lastname": "Cooper",
"last_operation": "Subscribe",
"last_operation_status": "Error",
"error_message": "Something bad happened..."
}
I feel like I’m missing something obvious and any advice is much appreciated.