-
I have a situation where I capture the The issue is that the Here's an example of the JSON response: [
{
"id": 5954,
"status": "executed",
// ...
},
{
"id": 5951,
"status": "repaid",
// ...
},
// more items...
] Here's the jsonpath I'm using:
Here's the hurl file I'm using:
When I run it, I have this error:
How can I solve this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, Your JSONPath is correct. As you've got an array, you can refine your query with filters. The filter
That should be good now! |
Beta Was this translation helpful? Give feedback.
Hi,
Your JSONPath is correct. As you've got an array, you can refine your query with filters. The filter
nth
can be used in this case:That should be good now!