Delve
137 Topics- The Future of DelveHaving noticed conversations popping up here and on Twitter about the future of Delve in Office 365 I’d like to put out a question to the Microsoft guys and girls on here about the future roadmap. The lack of updates around Boards and Blogs is evident. We’re happy to recognise the advances of Microsoft Graph across the Office 365 suite but clarity on Delve would be welcome. Thoughts Mark-Kashman danholme Naomi Moneypenny? Happy to hear from other Microsoft stakeholders.Solved57KViews14likes45Comments
- Introduction on Office DelveHi everyone, at our company we want to introduce Delve. I found a good video on Youtube: https://www.youtube.com/watch?v=cCbyer0Xupg&t=2s This video is from 2014 so it's outdated. Anyone know where I can find an updated version? Thanks, LeenSolved3.6KViews0likes5Comments
- How to read Delve Custom Aditional Field from Graph APIHi All, Could you please explain how to read Delve Custom Aditional Field for all users from Graph API we are able to read AAD field of all users from graph API via https://ind01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgraph.microsoft.com%2Fv1.0%2Fusers%3F%24top%3D1&data=05%7C01%7Cashish.tiwari%40infoprolearning.com%7Cf14e94e95c89494fd2ad08db67f2824a%7C0f8a5db06b604ca89fc98b2ae1cb809e%7C0%7C0%7C638218063480674801%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=II2q%2BBv0uxnjPsTHtif7c2q2XVigfHB7msDv%2F504oFw%3D&reserved=0 we need to sync our custom .net application from via AAD and Delve user aditional custom field.456Views0likes0Comments
- Variable in Graph Request Body (PowerShell)Working off the following URL: https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdocs.microsoft.com%2Fen-us%2Fgraph%2Fapi%2Fpasswordauthenticationmethod-resetpassword%3Fview%3Dgraph-rest-beta%26tabs%3Dhttp&data=04%7C01%7CJonesL%40duvalschools.org%7C997660b94b6e446de25508d9370bfc97%7C8deb1d4dd0a44d0489aef7076cbaa9fb%7C1%7C0%7C637601346885178418%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=ZVLJ3SH%2FHpLXNgV1uJAZqdCpLfvKqy%2Bb3kn7epZeUDA%3D&reserved=0 When I execute the following command in my PowerShell script it works flawlessly $PWCBody = '{ "newPassword" : "ssd$$FGW!!", "forceChangePasswordNextSignIn" : true }' $PWCURI = "https://graph.microsoft.com/beta/users/XXXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/authentication/passwordMethods/XXXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX/resetPassword" $PWChange = Invoke-RestMethod -Uri $PWCURI -Headers $HeaderDelegate -body $PWCbody -Method POST -ContentType "application/json" However, when I change the Request Body newPassword to variable I get a (403) Bad Request. $PWCBody = '{ "newPassword" : $password, "forceChangePasswordNextSignIn" : true }' How can i handle a variable in a Requested Body that's surrounded by single quotes? Thank You, -LarrySolved6.4KViews0likes7Comments
- Unsure about the Output ID of the get-mgusersettingiteminsight commandI am trying to find out the status of the Item Insight setting of some user. The output ID i get in my test tenant is different from the User-ID. What ID do i get as the output of this cmd. Should this not be the user ID?Solved1.4KViews0likes1Comment
- Item Insight UI questionWe disabled Item Insight for an O365 group of users in the Organizational settings UI. Now we would expect to see the Item Insight Setting in the profile-privacy settings of a specific user to be turned off and greyed out. But after (almost) 24 hours this is still turned on. Is this setting supposed to be change when the deactivation of Item Insight is applied to a group? Thanks, Franck630Views0likes0Comments
- How to get a group specific setting?I have read this: https://docs.microsoft.com/en-us/graph/api/groupsetting-get?view=graph-rest-1.0&tabs=http But i dont understand how to get the setting ID. GET /groups/{id}/settings/{id} i want to check if a group have the setting https://docs.microsoft.com/en-us/graph/api/resources/group?view=graph-rest-1.0#properties set to true or false. i do not want to do this in powershell, i want to figure out a graph URL to do this. but since i seem to need the setting ID i am stuck?1.5KViews0likes5Comments
