Forum Discussion
How to copy Data from Rest API with pagination?
- 2 years ago
Hi shun888
Thanks for using Microsoft Fabric Community.
As I understand that you are looking for how to use the pagination rules in Microsoft fabric for the data pipeline using the copy data activity from an API.
APIs often return a large amount of data. Pagination allows you to retrieve a manageable subset of this data at a time, preventing unnecessary strain on resources and reducing the likelihood of timeouts or errors.
For more information please refer to this documentation: Implementing Pagination with the Copy Activity in Microsoft Fabric
I hope this information helps. Please do let us know if you have any further questions.
Thanks.
Hi shun888
Thanks for using Microsoft Fabric Community.
As I understand that you are looking for how to use the pagination rules in Microsoft fabric for the data pipeline using the copy data activity from an API.
APIs often return a large amount of data. Pagination allows you to retrieve a manageable subset of this data at a time, preventing unnecessary strain on resources and reducing the likelihood of timeouts or errors.
For more information please refer to this documentation: Implementing Pagination with the Copy Activity in Microsoft Fabric
I hope this information helps. Please do let us know if you have any further questions.
Thanks.
What if my pagination is done via body within a POST request where I need to have "after" parameter? If I use "pagination rules" where I add queryparameters and set "after" to $.paging.next.after, how do I put this value back into my request? I've been digging around for this everywhere and could not find anything. The solution offered in ADF did not work