Call API Value

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.


this is the destination table

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.


You fixed the values in the JSON Template, and broke the keys.

Did I do it wrong, please? The value isn’t correct after mapping.


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.

1 Like

Yes, I made it! Appreciate a lot Darren :handshake:

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.