Hi All,
I am using HTTP action and below API(POST method) to get all actions and triggers available inside connectors in my Default Environment.
The API is working fine in Postman and producing nextLink for processing further records . I have used nextLinks in recurrence for quite a far and it is working fine. There are more than 4000+ records which API returns .When I am using the same API and Bearer Token in Power Automate http action it returns 250 records and nextLink after first call . When I use nextLink produced in previous step for further API call in another HTTP request it only returns 27 records and there is no nextLink available in response body of HTTP request. I am using the same Bearer Token at both place.
Please suggest what could be the reason I am not getting all records.
Thanks in Advance.
Hi...
Try replacing "required" property with "optional"... worked for me
@lbendlin ,Thanks for your response .I am using top=250 at the end of my API in first API call itself and that's why it is returning 250 records. I am using 250 as API is not taking more than 250 .In the next call(using nextLink) it is just returning 27 records.
limit the first call to 250 and see how many you get on the next call