API GET records

Thanks. Here’s the raw JSON response (I used Postman to generate it):

{“records”:[{“id”:1,“Name”:“bader”,“created_at”:“2021-10-04T20:30:45.764Z”,“updated_at”:“2021-10-04T21:41:13.903Z”},{“id”:2,“Name”:“yazan”,“created_at”:“2021-10-04T21:39:29.511Z”,“updated_at”:“2021-10-04T21:41:08.218Z”}]}

And formatted at codebeautify:

Your blocks for the “Name” property should work but not for the “Image” property because it doesn’t exist. What happens if you just assign the value of get property "Name" of object j to a label? Can you see the value then?

Edit: Actually, I think you’ll need to get the property name “records” first, then loop through that value as a list to get the “Name” property.

2 Likes