What is the maximum number of events per page returned for calendarview endpoint in Office365 Calendar REST Api? -
as suggested in answer question:
office365 rest v1.0 api calendar not return recurrences
i using calendarview endpoint. here documentation it:
https://msdn.microsoft.com/office/office365/api/calendar-rest-operations#eventoperationsgetevents
in documentation following link odata query parameters discuss paging of response:
however, mentions maximum number of entries per page returned messages or childfolders endpoints, not number of entries per page returned calendarview endpoint. doubt 10 or 50, few events typical calendarview call.
can point me documentation outlines value?
update: sorry, didn't understand question right. max # of items returned in page 10 if $top isn't specified query parameter, value of $top if $ top specified , $top<=50, , 50 if $top specified query parameter $top>=50 . example:
https://outlook.office365.com/api/v1.0/me/calendarview?startdatetime=2015-03-01t07:00:00z&enddatetime=2015-04-01t06:59:59z return 10 items in page, assuming there @ least 10 items return.
https://outlook.office365.com/api/v1.0/me/calendarview?startdatetime=2015-03-01t07:00:00z&enddatetime=2015-04-01t06:59:59z&$top=50 return 50 items in page, assuming there @ least 50 items return.
https://outlook.office365.com/api/v1.0/me/calendarview?startdatetime=2015-03-01t07:00:00z&enddatetime=2015-04-01t06:59:59z&$top=500 return 50 items in page, assuming there @ least 50 items return.
Comments
Post a Comment