I'm using the O365 Group action to send an HTTP request to get events from a group calendar for a specific date. The query used is:
https://graph.microsoft.com/v1.0/groups/<groupID>/events?$filter=start/dateTime gt '2024-11-21T00:00:00.0000000' and start/dateTime lt '2024-11-22T00:00:00.0000000'&$orderby=start/dateTime asc
I notice that this only returns 10 items. I've tried using top=20 but it doesn't seem to work:
https://graph.microsoft.com/v1.0/groups/<groupID>/events?$filter=start/dateTime gt '2024-11-21T00:00:00.0000000' and start/dateTime lt '2024-11-22T00:00:00.0000000'&$orderby=start/dateTime&$top=20 asc
and gives a BadRequest error.
Is there a way to return more than 10 items using this action?