So I was working on this workflow to read APIs using the Python tool in Alteryx. However, I get the error message saying that there is no valid meta data. Furthermore, the JSON Parse tool says JSON field is missing. What am I doing wrong?
Reference for workflow Re: Using Python tool to do API - Alteryx Community
Solved! Go to Solution.
You need to write the result to the correct output anchor. Insert this as your last line in the Python code:
Alteryx.write(df,1)
I suggest you see the comment section of that page that you linked.