Hi @Jim Kelly
You definitely need the item id to download the item file, because id is the unique identifier of the item within the drive. The webUrl is just the address value of the item file displayed in the browser, obviously it cannot refer to this item file. In addition, webUrl cannot be converted to item id either.
So you need to get the item id first GET https://graph.microsoft.com/v1.0/me/drive/root/children?$select=id,name
, and then download the item file according to the item id GET https://graph.microsoft.com/v1.0/me/drive/items/{item-id}/content
.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.