Forum Discussion
Jason_B1025
Apr 21, 2020Brass Contributor
How to find out who created a form
someone created a MS Form and embeded it on a sharepoint online page. The form is giving an error now but no one knows who created it and I can only find the URL to the form, nothing else. How do I ...
- Jan 03, 2022
Jason_B1025 I was able to get the ID of the user with a bit of a hack. Here are sample steps:
-Access the form using this designer direct URL https://forms.office.com/Pages/DesignPage.aspx?origin=shell#FormId=<YourFormID>
-Inspect the network traces. You will find a request similar to this
https://forms.office.com/formapi/api/72f988bf-86f1-41af-91ab-2d7cd011db47/users/e5351c57-d147-418e-89ab-3a3d50c235b6/light/forms('v4j5cvGGr0GRqy180BHbR1ccNeVH0Y5Bias6PVDCNbZUOUg4TkZJUEswSVQ1ODhNNkpHVVlMMldPTi4u')?$select=id,...
-The ID in bold is the AAD ID of the user
-Use Graph Explorer - Microsoft Graph to run this request to retrieve the username and email address of the owner https://graph.microsoft.com/v1.0/users/<UserID>
DingkunXie
Microsoft
Jul 11, 2023MS Graph API explorer could be a good tool to identify the profile of a user or group once you have the object Id, details as below:
1. Navigate to https://developer.microsoft.com/en-us/graph/graph-explorer
2. Login with your work or school account which is same tenant as the user/group you want to search
3. Modify the URL to https://graph.microsoft.com/v1.0/groups/{group object id} for group profile, https://graph.microsoft.com/v1.0/users/{user object id} for user profile.
4. Click "Run query" and you will get the profile including display name, email address (if applicable), etc.
1. Navigate to https://developer.microsoft.com/en-us/graph/graph-explorer
2. Login with your work or school account which is same tenant as the user/group you want to search
3. Modify the URL to https://graph.microsoft.com/v1.0/groups/{group object id} for group profile, https://graph.microsoft.com/v1.0/users/{user object id} for user profile.
4. Click "Run query" and you will get the profile including display name, email address (if applicable), etc.
Marie-wccls
Oct 20, 2023Copper Contributor
This worked wonders for me, thank you!