I have tried sending the following HTTP request based on the new Microsoft Graph API v1:
POST https://graph.microsoft.com/v1.0/groups/c694da84-3f9f-4bac-9491-c2775fc39f65/drive/items/012YPM4EKO23JQWLSNYJG2DG3ZAULBDCIS/microsoft.graph.createLink HTTP/1.1
Authorization: Bearer <access-code> (filled in with valid access token)
Host: graph.microsoft.com
Content-type: application/json
Content-Length: 53
{
"type": "edit",
"scope": "Files.ReadWrite"
}
My URL follows the following format:
https://graph.microsoft.com/v1.0/groups/<group-id>/drive/items/<item-id>/microsoft.graph.createLink
I get the following 400 error:
HTTP/1.1 400 Bad Request
{
"error": {
"code": "-1, Microsoft.SharePoint.Client.InvalidClientQueryException",
"message": "The parameter scope does not exist in method createLink.",
"innerError": {
"request-id": "nnnnnnnn-nnnn-nnnn-nnnn-nnnnnnnnnnnn",
"date": "2015-11-30T23:55:56"
}
}
}
I'm kind of confused, because according to the following documentation (that I think is up to date), scope is required in the request body: Microsoft Graph - Create a sharing link for an item