Hello,
I am trying to extract data from azure AD. I am at the point where I can get data using the microsoft Graph API, and have it loaded into Timextender.
The issue I am facing has to do with pagination. Microsoft graph API returns an url containing information of the next 'page’ of data. According to documentation I should adjust my RSD file as follows:
<api:set attr="DataModel" value="DOCUMENT" />
<api:set attr="URI" value="https://graph.microsoft.com/v1.0/groups" />
<api:set attr="EnablePaging" value="true" />
<api:set attr="pageurlpath" value="/json/@odata.nextLink" />
<api:set attr="RepeatElement" value="/json/value/" />
This does not however loop over the pages, but still only gives me a top 100 of groups. I have a feeling maybe I need to escape either the @ or the . in the pageurlpath. Or am I missing something more obvious?
Kind regards,
Rutger