Greetings & Welcome to Microsoft Q&A forum! Thanks for posting your query!
The error occurs because the QueryParameters pagination rule was incorrectly defined or conflicts with the API's structure. Specifically, the value &limit=500 as a QueryParameters rule is invalid in this context. The correct way to define pagination rules for APIs like involves dynamically updating the offset query parameter without appending raw query strings.
I tried to replicate the scenario and able to pass the query parameter values. I took the following API
API link: https://pokeapi.co/api/v2/pokemon?limit=100&offset=0
Base URL: https://pokeapi.co/api/v2/pokemon?limit=100&offset={offset}
Here I have created a variable called offset
in the URL and need to pass the values.
For more details, please refer:
Output:
I hope this information helps. Please do let us know if you have any further queries.
If this answers your query, do click Accept Answer
and Yes
for was this answer helpful. And, if you have any further query do let us know.