Questions tagged [microsoft-graph-sdks]

Microsoft Graph SDKs refer to a collection of language-specific SDKs for Microsoft Graph. This tag should generally be used in conjunction with the [microsoft-graph] tag.

The current list of available SDKs for Microsoft Graph can be found at https://developer.microsoft.com/en-us/graph/gallery/?filterBy=SDKs

1156 questions
0
votes
1 answer

Retrieve subject line from the organiser rather than invitee's using Microsoft Graph API

Just to start off, anything in the {} is just a variable passed in a foreach loop - but for simplicity's sake... I am currently calling the Microsoft Graph API to call our meeting room calendar, and list the next 3…
0
votes
2 answers

MS Graph SDK - assigning license to any user

I'm trying to use the assignLicense functionality in the MS Graph API as described here As I'm using the SDK, I'm looking at the C# sample, which uses graphServiceClient.Me.AssignLicense But, graphServiceClient.Me refers to the logged in user..…
Stephan Steiner
  • 1,043
  • 1
  • 9
  • 22
0
votes
1 answer

Control external access pr Office 365 groups

Is it possible to enable/disable external access pr 365 groups from c#. I can see that some PowerShell cmd have a property called AllowGuestsUsers but I cant find anything in Microsoft Graph or similar?
0
votes
1 answer

OneDrive Delta Missing Events After Folder Move

Currently I am experiencing an issue with delta mechanism for OneDrive in the Graph API. I have encountered a situation where moving a folder results in missing events when querying the delta endpoint. Here is an example scenario: --> DT_null -->…
0
votes
1 answer

Add User to Group without notifications

With the code below you can Users to a Group. Is there any way to disable notifications? I don't want this to trigger an email to the users added. var user1 = client.Users["myuser@xx.dk"] .Request() .GetAsync() .Result; client …
Thomas Segato
  • 4,567
  • 11
  • 55
  • 104
0
votes
1 answer

Microsoft graph webook validation token issue

I created an endpoint for the MIcrosoft Graph Webhook API but for some reason, the validation token returned isn't correct. It shows Validation: Testing client application reachability for subscription Request-Id: Any help would be appreciated { …
tawheed
  • 5,565
  • 9
  • 36
  • 63
0
votes
2 answers

use GraphServiceClient from multiple threads (parallel) - send mails

I have a need to send multiple emails using Microsoft Graph from Windows Service. I'm using Microsoft.Graph NuGet package. I'm creating GraphServiceClient and sending mail like so: IGraphServiceClient graphClient = new…
Misiu
  • 4,738
  • 21
  • 94
  • 198
0
votes
0 answers

Can't access SingleValueExtendedProperties when recipient account differs from sender

I seem to be unable to access the SingleValueExtendedProperties set in my MVC App using the Microsoft Graph API from the recipient account.. When checking the same message in either the senders Sent Items or sending the same message to myself, it…
0
votes
1 answer

Model\User not found

I am trying to retrieve information on Users using the Microsoft Graph Library for PHP. I can see that in GraphResponse.php, my $result is filled with correct data but the code does not find the Model\User-class. $user =…
Odido
  • 13
  • 7
0
votes
1 answer

How and where do I add a new Schema Extension?

I have been trying for weeks to add a new Schema Extension for my Microsoft Graph based MVC application, essentially to store some basic variables along with a mail Message. I've followed this example from GitHub and after some very frustrating days…
Shawno0
  • 1
  • 1
0
votes
1 answer

Microsoft graph delta and user licenses

I had been using the Azure Graph APIs and the delta query would return users if their O365 licenses were modified. The assignedLicenses and assignedPlans properties would also be returned. I've now switched to the Microsoft Graph and neither of…
0
votes
0 answers

Microsoft Graph API beta not working with node

I'm having trouble to use the beta api of Microsoft Graph. Running this code on v1.0 works fine var AuthenticationContext = require('adal-node').AuthenticationContext; var MicrosoftGraph =…
JuChom
  • 5,717
  • 5
  • 45
  • 78
0
votes
0 answers

Chat.Read and Chat.ReadWrite Permissions Usage

When registering a Graph application in Azure Portal there are permissions for chat.read and chat.readwrite. Are there corresponding dotnet sdk methods for accessing chat with these permissions enabled? If not are there plans to support this in the…
0
votes
1 answer

How to get a list of fields from a sharepoint list with microsoft-graph?

How can I get the values of a ListItem from a SharePoint List via the .NET Graph SDK? I'm getting a "bad request" error. var listItemData = graphClient .Sites["tenant.sharepoint.com:/sites/siteA:"] .Lists["List1"] .Items["117"] .Request() …
user5950554
0
votes
1 answer

Office 365 Multi Geo - Issue with fetching PreferredDataLocation property for a user from Azure Active Directory

I am trying to fetch PreferredDataLocation (PDL) for a user from Azure Active Directory. I used Graph v1.0 but do not receive PDL value in the response: https://graph.microsoft.com/v1.0/users/{upn}?$select=preferredDataLocation But when I use…