Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
I am trying to store data being pulled in from a JSON file into an InfoTable and I keep getting this error with one of my values from the JSON file:
Solved! Go to Solution.
Had you tried data.array[i].isbn?
Maybe better you print the JSON content to the log console:
logger.info(" JSON content "+JSON.stringify(data));
Hi! How/where is your "data" variable set? As an input to the service or as code above the screenshot?
Had you tried data.array[i].isbn?
Maybe better you print the JSON content to the log console:
logger.info(" JSON content "+JSON.stringify(data));
This worked for me! Thank you so much.