Paul Judson
Paul Judson

Reputation: 11

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 these seems to apply.

If I make changes to standard user properties such as their name the delta query will return the user. However, if I make changes to their licenses the delta query doesn't return any users.

If I make changes to their name and licenses the delta query returns the user but the assignedLicenses and assignedPlans are both empty.

I am using the Microsoft Graph .NET Client Library (https://github.com/microsoftgraph/msgraph-sdk-dotnet)

Does anyone know if I am missing something or if this is just not supported in Microsoft Graph or maybe it is just not supported in the .NET library I'm using.

Thanks, -Paul Judson

Upvotes: 0

Views: 242

Answers (1)

baywet
baywet

Reputation: 5372

As mentioned in the comment you need to include this as a $select to include those optional properties.

Upvotes: 0

Related Questions