Forum Discussion
AP_TC_ECASD
Aug 06, 2025Brass Contributor
Get-MgBookingsBusiness/Graph API Pagination Limits = 1000
Has anyone had success pulling all Bookings Businesses of their tenant over 1000? I cannot for the life of me figure out how to get past 1000 results because there are. # Make sure you're connect...
Bart_Pasmans
Aug 07, 2025Copper Contributor
Hi AP_TC_ECASD​,
You could also try the PowerShell Graph SDK if you want to:
https://learn.microsoft.com/en-us/powershell/microsoftgraph/get-started?view=graph-powershell-1.0
This will handle pagination for you automatically if I'm not mistaken. If you run into retries, time-outs etc. this abstraction will also take care of it for you.
You can use:
$allBusinesses = Get-MgBookingBusiness -All
To get the bookings. See:
https://learn.microsoft.com/en-us/powershell/module/microsoft.graph.bookings/get-mgbookingbusiness?view=graph-powershell-1.0
My gut feeling says you might be running into either Rate limiting somehow, or something with the token doing the API call.
Kind regards,
Bart