Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! 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.