Microsoft Graph Organiser Set
enter image description here
Create and enable an event as an online meeting in Microsoft Graph api. Can we set organiser. Is it possible.I need to know is it possible or not?
POST ``https://graph.microsoft.com/v1.0/me/events
Prefer: outlook.timezone="Pacific Standard Time"
Content-type: application/json
{
"subject": "Let's go for lunch",
"body": {
"contentType": "HTML",
"content": "Does noon work for you?"
},
"start": {
"dateTime": "2017-04-15T12:00:00",
"timeZone": "Pacific Standard Time"
},
"end": {
"dateTime": "2017-04-15T14:00:00","timeZone": "Pacific Standard Time"
},
"location":{
"displayName":"Harry's Bar"},"attendees": [
{
"emailAddress": {
"address":"[email protected]",
"name": "Samantha Booth"
},
"type": "required"
}
],"allowNewTimeProposals": true,
"isOnlineMeeting": true,
"onlineMeetingProvider": "teamsForBusiness"
}
Graph API InternalServerError with FanoutDownstreamContradiction when running queries with large amount of results over multiple sites
I am running a search query against our SharePoint environment over a large amount of sites using the Graph API. For this we use the ‘search/query’ endpoint. The request is done using delegated permissions. Currently, when we run a query, most of the times it goes well, but sometimes gives an error with a statuscode 500 like this:
I am running a search query against our SharePoint environment over a large amount of sites using the Graph API. For this we use the ‘search/query’ endpoint. The request is done using delegated permissions. Currently, when we run a query, most of the times it goes well, but sometimes gives an error with a statuscode 500 like this:
Using Azure Graph API to get user details by Id, but the “Email Addresses” attribute (StringCollection) is always missing in the response
I am using the Azure Graph API to retrieve user details by their Id. However, I am encountering an issue where I am unable to obtain the value of the “Email Addresses” attribute, which is of the StringCollection data type.
Downloading word file as PDF from SharePoint using Graph api looses sensitivity-label
I have a word file in SharePoint Online document library, this file has Sensitivity label assigned to it. I am downloading this file using Graph SDK with query parameter ‘format=pdf’. The file is successfully downloaded and saved as pdf, however, the sensitivity labels are lost.
Microsoft Graph Application token obtained using Azure AD client credentials flow does not include expected permissions
I am facing an issue with obtaining an application token using Azure AD’s client credentials flow. Despite having correctly configured and granted the necessary API permissions for my application in Azure AD, the token retrieved using the .default scope does not include all the expected permissions but instead includes 4 permissions (“Mail.ReadWrite, User.Read.All”, Mail.Read”, Mail.ReadBasic”) but I don’t understand why only these are showing and nothing else. What am I missing?
Accessing Outlook Calendar Graph API from background service
I’m working on a webapp (SPA and backend) that must constantly access the user’s Outlook calendar. The users may come from multiple directories and personal accounts. The app will work 24/7, running the background service and modifying the user’s calendar without the user’s involvement. So far, I have completed the following:
Access Graph API without the user (personal account)
I need to access the user’s Outlook calendar from the background service. The user may come from multiple directories or have a personal account.
Search folder in outlook
Issue with Displaying Search Folders in Outlook Across Different Interfaces
Search Outlook messages via MS Graph Search API, how do I get a full body of a message?
I try to search an email message via MS Graph Search API below,
https://learn.microsoft.com/en-us/graph/search-concept-messages#response
How to get Microsoft Graph refresh token using Named Credentials from salesforce
enter image description here
I have added scope and also added permision in app.
enter image description here