A unified data governance solution that helps manage, protect, and discover data across your organization
Hi @Balamurugan, Susinthika
Thanks for your question.
In Microsoft Purview APIs, pagination fields like skipToken or nextLink are returned only when the response contains more items than can be returned in a single page. If the total number of results is small, the API will return all data in one response, and you will not see these pagination fields.
There is no specific configuration or setting that needs to be enabled to get these fields. Pagination is handled automatically by the service.
Regarding the default page size, this is not always fixed or publicly documented for all Purview endpoints, and it may vary depending on the API and service behavior. Because of this, it is generally recommended to rely on the presence of nextLink / skipToken in the response rather than assuming a specific page size.
If you would like to test pagination behavior, you can try:
- Using query parameters such as
$top(if supported by that endpoint) - Testing in an environment with a larger number of items
If you are still not seeing pagination when you expect large results, please share a sample request and response (sanitized), and we can review further.
Hope this helps clarify.
Thanks.