Microsoft Graph API group folder invite response is wrong
I have been trying to grant a single user (possibly outside of the organization) access to a folder used by a shared group in Share Point The Microsoft Graph Docs state that the response should have an Id in it.
If I use a personal oneDrive account, and make the following request:
POST v1.0
https://graph.microsoft.com/v1.0/groups/groupId/drive/items/folderId/invite
body:
"requireSignIn": true,
"sendInvitation": true,
"roles": [ "read"],
"recipients": [
"email": "myPersonalEmail" ,
],
"message": "testing giving permission to self"
I get the following response:
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#Collection(permission)",
"value": [
"@odata.type": "#microsoft.graph.permission",
"id": "permissionID",
"roles": [
"read"
],
"grantedTo":
"user":
"email": "myPersonalEmail",
"id": "responseID",
"displayName": "Sarah"
]
However, we setup a different SharePoint account that when I make the same request https://graph.microsoft.com/v1.0/groups/groupId/drive/items/folderId/invite
I get a completely different response:
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#Collection(permission)",
"value": [
"@odata.type": "#microsoft.graph.permission",
"roles": [
"read"
],
"invitation":
"signInRequired": true
,
"link":
"type": "view",
"webUrl": "shareURL"
]
This is so bizarre to me, because we are hitting the same endpoint. It makes me think that maybe there are some site configurations that are making these two responses differ.
Does anyone know why we would be getting a different results from the same endpoint?
microsoft-graph
add a comment |
I have been trying to grant a single user (possibly outside of the organization) access to a folder used by a shared group in Share Point The Microsoft Graph Docs state that the response should have an Id in it.
If I use a personal oneDrive account, and make the following request:
POST v1.0
https://graph.microsoft.com/v1.0/groups/groupId/drive/items/folderId/invite
body:
"requireSignIn": true,
"sendInvitation": true,
"roles": [ "read"],
"recipients": [
"email": "myPersonalEmail" ,
],
"message": "testing giving permission to self"
I get the following response:
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#Collection(permission)",
"value": [
"@odata.type": "#microsoft.graph.permission",
"id": "permissionID",
"roles": [
"read"
],
"grantedTo":
"user":
"email": "myPersonalEmail",
"id": "responseID",
"displayName": "Sarah"
]
However, we setup a different SharePoint account that when I make the same request https://graph.microsoft.com/v1.0/groups/groupId/drive/items/folderId/invite
I get a completely different response:
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#Collection(permission)",
"value": [
"@odata.type": "#microsoft.graph.permission",
"roles": [
"read"
],
"invitation":
"signInRequired": true
,
"link":
"type": "view",
"webUrl": "shareURL"
]
This is so bizarre to me, because we are hitting the same endpoint. It makes me think that maybe there are some site configurations that are making these two responses differ.
Does anyone know why we would be getting a different results from the same endpoint?
microsoft-graph
Because you have create a invite url for the share folder when you setup a different SharePoint Account.
– Keen Jin
Nov 19 '18 at 8:29
1
hmm I am not sure I understand, could you explain a little more? Someone else set everything up. I'm not very familiar with it all.
– Sarah
Nov 20 '18 at 20:55
add a comment |
I have been trying to grant a single user (possibly outside of the organization) access to a folder used by a shared group in Share Point The Microsoft Graph Docs state that the response should have an Id in it.
If I use a personal oneDrive account, and make the following request:
POST v1.0
https://graph.microsoft.com/v1.0/groups/groupId/drive/items/folderId/invite
body:
"requireSignIn": true,
"sendInvitation": true,
"roles": [ "read"],
"recipients": [
"email": "myPersonalEmail" ,
],
"message": "testing giving permission to self"
I get the following response:
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#Collection(permission)",
"value": [
"@odata.type": "#microsoft.graph.permission",
"id": "permissionID",
"roles": [
"read"
],
"grantedTo":
"user":
"email": "myPersonalEmail",
"id": "responseID",
"displayName": "Sarah"
]
However, we setup a different SharePoint account that when I make the same request https://graph.microsoft.com/v1.0/groups/groupId/drive/items/folderId/invite
I get a completely different response:
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#Collection(permission)",
"value": [
"@odata.type": "#microsoft.graph.permission",
"roles": [
"read"
],
"invitation":
"signInRequired": true
,
"link":
"type": "view",
"webUrl": "shareURL"
]
This is so bizarre to me, because we are hitting the same endpoint. It makes me think that maybe there are some site configurations that are making these two responses differ.
Does anyone know why we would be getting a different results from the same endpoint?
microsoft-graph
I have been trying to grant a single user (possibly outside of the organization) access to a folder used by a shared group in Share Point The Microsoft Graph Docs state that the response should have an Id in it.
If I use a personal oneDrive account, and make the following request:
POST v1.0
https://graph.microsoft.com/v1.0/groups/groupId/drive/items/folderId/invite
body:
"requireSignIn": true,
"sendInvitation": true,
"roles": [ "read"],
"recipients": [
"email": "myPersonalEmail" ,
],
"message": "testing giving permission to self"
I get the following response:
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#Collection(permission)",
"value": [
"@odata.type": "#microsoft.graph.permission",
"id": "permissionID",
"roles": [
"read"
],
"grantedTo":
"user":
"email": "myPersonalEmail",
"id": "responseID",
"displayName": "Sarah"
]
However, we setup a different SharePoint account that when I make the same request https://graph.microsoft.com/v1.0/groups/groupId/drive/items/folderId/invite
I get a completely different response:
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#Collection(permission)",
"value": [
"@odata.type": "#microsoft.graph.permission",
"roles": [
"read"
],
"invitation":
"signInRequired": true
,
"link":
"type": "view",
"webUrl": "shareURL"
]
This is so bizarre to me, because we are hitting the same endpoint. It makes me think that maybe there are some site configurations that are making these two responses differ.
Does anyone know why we would be getting a different results from the same endpoint?
microsoft-graph
microsoft-graph
asked Nov 15 '18 at 23:35
SarahSarah
738
738
Because you have create a invite url for the share folder when you setup a different SharePoint Account.
– Keen Jin
Nov 19 '18 at 8:29
1
hmm I am not sure I understand, could you explain a little more? Someone else set everything up. I'm not very familiar with it all.
– Sarah
Nov 20 '18 at 20:55
add a comment |
Because you have create a invite url for the share folder when you setup a different SharePoint Account.
– Keen Jin
Nov 19 '18 at 8:29
1
hmm I am not sure I understand, could you explain a little more? Someone else set everything up. I'm not very familiar with it all.
– Sarah
Nov 20 '18 at 20:55
Because you have create a invite url for the share folder when you setup a different SharePoint Account.
– Keen Jin
Nov 19 '18 at 8:29
Because you have create a invite url for the share folder when you setup a different SharePoint Account.
– Keen Jin
Nov 19 '18 at 8:29
1
1
hmm I am not sure I understand, could you explain a little more? Someone else set everything up. I'm not very familiar with it all.
– Sarah
Nov 20 '18 at 20:55
hmm I am not sure I understand, could you explain a little more? Someone else set everything up. I'm not very familiar with it all.
– Sarah
Nov 20 '18 at 20:55
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53329359%2fmicrosoft-graph-api-group-folder-invite-response-is-wrong%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53329359%2fmicrosoft-graph-api-group-folder-invite-response-is-wrong%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Because you have create a invite url for the share folder when you setup a different SharePoint Account.
– Keen Jin
Nov 19 '18 at 8:29
1
hmm I am not sure I understand, could you explain a little more? Someone else set everything up. I'm not very familiar with it all.
– Sarah
Nov 20 '18 at 20:55