Hi guys, can you please tell me what I might have done wrong? I am trying to use an API call to transfer data from the original table to the destination table. I used a JSON template, and while some data has successfully been copied to the destination table, it appears to be the column names rather than the actual values.
You got the column names because that’s what you sent.
You need to use replacements in the JSON Template to include the column values.
I added the JSON object to the template, which seemed fine, but when I ran it, an error message appeared.
Yes, it’s still wrong. On the right hand side of your template you have literal strings, so the replacements are being ignored.
Instead of “Name”, you should have $Name, and so on.
Yes, I made it! Appreciate a lot Darren
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.