Hi there,
I'm using the Graph API to access Excel files in my OneDrive (works great!).
Actually I'm trying to access older versions of my Excel files. I can get a list with "/versions". I can get some detail information about a specific version with "/versions/x.0.
But getting the content is not working for me (no specific error message)
Graph Explorer
https://graph.microsoft.com/v1.0/me/drive/items/01Y5BOJUKNFSJVM6VB6J.../versions/2.0/content
or in code
let res = await client.api("/me/drive/items/01Y5BOJUKNFSJVM6VB6J.../versions/2.0/content").get();
In the end I would like to access workbook elements inside the version driveItem. Something like:
let res = await client.api("/me/drive/items/01Y5BOJUKNFSJVM6VB6J.../versions/2.0/driveItem/workbook/names").get();
Is it possible to get access to driveItems based on a DriveItemVersion?
Or download such an old version?
I appreciate your help. Thanks in advance
Best
Stephan
