-
Notifications
You must be signed in to change notification settings - Fork 10.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pagination is not updating parameters #8449
Comments
Hey @Valdri, Good spot, It looks like when making a post request the pagination is not functioning correctly. To be honest it isn't something I had thought about testing either as it is not often you see pagination being needed for post requests. Do you have a link to the API documentation for what you are working with so we can test against that while fixing this? |
@Joffcom , it is not just |
@ihortom if you can share those it would be great we put a fix in 1.22.6 that fixed an issue with pagination that I have tested against 4 different APIs that are working. I will run my test workflow this morning to make sure all is still good on the get requests |
Have ran my test workflow on 1.25.0 ✅ GitHub - Update Parameter in each request - Query > Page > ✅ Mailchimp - Update a Parameter in Each Request - Query > Offset > ✅ PokeAPI - Response contains next url > ✅ Hubspot - Response Next URL > From my testing it looks good on recent versions when making GET requests. My test workflow can be found below, If you have information on an API that isn't working with the GET request @ihortom if you can provide the API docs as long as they offer trial accounts of some kind I can give them a test.
|
Internal ticket for the POST request issue is |
@Joffcom , I didn't realize that pagination for |
That is good to hear, I think they were actually fixed before that but I would need to check notes to be sure. I have just happy it isn’t broken again 🙂 |
Upgrading to |
Fix got released with |
Describe the bug
When running http with pagination, it does not update the parameters in the next run
my body parameters:
Pagination settings:
On the first request its sending parameters:
{ "date_from": 1, "get_unconfirmed_orders": true, "include_custom_extra_fields": true }
In the 2nd request, pagination should update the parameters to:
{ "date_from": 2, "get_unconfirmed_orders": true, "include_custom_extra_fields": true }
But it doesn't do that, it just sends a test without updating the parameters
1 request:
2 request:
Workflow file:
pagination_test.json
The text was updated successfully, but these errors were encountered: