I have the following JSON response - I want to use the Response Key Path to navigate into “data”
What should I be typing into the key path, as it is the first index of the list I think appgyver is struggling.
I have tried
data
.data
[0].data
[0]/data
nothing seems to work
1 Like
The correct answer would be data
, however if it doesn’t work it may be because it’s not an array, try pulling the data as a single record instead of a collection, and use data
in the response key path. Although you are seeing your data, you’ll notice status is -1 and yellow as well as the error message at the top indicating the issue with the data pull. If you’re able to get a green light pulling the data as a single record instead of a collection you should be able to then access the data response path with the key path data
.
1 Like