can someone show me how i can access latestStatusD...
# suitescript
l
can someone show me how i can access latestStatusDetail value from this JSON object this is what i have so far - track_status_response_body.output.completeTrackResults[0].trackResults.latestStatusDetail but its not working
e
trackResults is a list as well, so you need to define the index there
track_status_response_body.output.completeTrackResults[0].trackResults[0].latestStatusDetail
l
thank you