Questions tagged [microsoft-graph-teams]

Microsoft Graph Teams refers to the Microsoft Teams APIs from Microsoft Graph. This tag should always be used in conjunction with the [microsoft-graph] tag.

999 questions
4
votes
0 answers

Is it possible for a Microsoft Teams bot to download a meeting transcript?

I'm trying to figure out whether it's possible for a bot to download a Teams meeting transcript. If I start recording/transcription for a call/meeting, the transcript appears interspersed with the meeting chat after the call is complete (along with…
Chris Bardon
  • 430
  • 4
  • 13
4
votes
1 answer

Preview image attachments in ChatMessage

We are using the ms graph api to post messages to a teams channel from a internal desktop application. The main purpose is to attach images to the message. We upload the image files into the one-drive folder of the channel as shown below. …
4
votes
1 answer

Microsoft teams: filesFolder is returning 404 for a newly created team/channel

We are using the below graph endpoint to get the metadata for the location where the files of a channel are stored. GET /teams/{id}/channels/{id}/filesFolder Sometimes for a newly created MS team/channel it is returning 404 not found. GET HTTP/1.1…
4
votes
2 answers

How to update (edit) a Microsoft Teams message (thread or reply) inside a Teams channel via REST API

I can write a thread message inside a channel in Microsoft Teams. Is there any method to update the content of it via REST API? Thanks
4
votes
2 answers

MS Teams Get Roster returns "The bot is not part of the conversation roster."

I am trying to fetch the MS Teams roaster / user profile. Below are the sequence of Postman calls I am making: Generated Access Token: https://login.microsoftonline.com/botframework.com/oauth2/v2.0/token Generated User Access Token: …
4
votes
3 answers

How to decrypt webhook response data in Microsoft Graph?

I have implemented Secure Web hook features for my Spring Boot application(Java). For that I have created "Subscription" with below JSON. String subscriptionMessageTemplate = "{\"changeType\": \"created,updated\",\"notificationUrl\":…
4
votes
1 answer

loginRedirect() method of msal.js package causes 'TypeError: Cannot read property 'then' of undefined'

I'm currently working with the msal.js package, so that I can you use the azure authorization for my own Vue.js application. So far I've created an Teams App in which I access my Vue.js Website, which is tunneled with ngrok. My code inside Vue.js…
user11668595
3
votes
0 answers

Graph_helper.py Send on behalf of another user - Django

I have the following code (graph_helper.py), which I copied when completing the Microsoft Graph - Django. The create_event and create_online_event functions works fine for the logged in user. What I ideally need is rather than the calendar events…
3
votes
1 answer

how to create an encrypted certificate for ms graph subscription requests?

I'm trying to create a subscription to MS Graph for MS Teams chats. I've been reading through this documentation: https://learn.microsoft.com/en-us/graph/teams-changenotifications-teammembership The sample POST message looks like this: POST…
dot
  • 14,928
  • 41
  • 110
  • 218
3
votes
1 answer

Find all existing online meetings via MS Graph API

I want to get attendance reports for historic online meetings in MS Teams (e.g. of the last day) that where created via UI (not via API). I have a client (service) with the required permissions to do the Graph API calls. The client runs in…
budoka
  • 31
  • 2
3
votes
1 answer

Get Microsoft Teams/Graph user status message via API

It looks like you can get a user's presence via API: https://learn.microsoft.com/en-us/graph/api/presence-get?view=graph-rest-1.0&tabs=http. But I can't find any way to get the Teams status itself, specifically this thing: I've seen various people…
UnionP
  • 1,251
  • 13
  • 26
3
votes
1 answer

How to create a Microsoft Teams Meeting as application using Microsoft Graph?

I'm working on a calendar web application where I want to create a Teams meeting and add the meeting (the join-URL) to an appointment. As not all of my users log in via Microsoft OAuth 2.0 login, I have to create the teams meeting on the server side…
3
votes
1 answer

Microsoft Graph - User photo : Microsoft.Fast.Profile.Core.Exception.ImageNotFoundException

I am trying Microsoft Graph in a personal project to learn about it. I have an Application and secret registered in Azure. This Application contains the following permissions at Application level: User.Read.All, User.ReadWrite. All these permissions…
3
votes
1 answer

Microsoft Graph API - Patch user (permission issue for Application Token)

I am updating an user's password via nodejs-graph-API application(with Application token) with below endpoint PATCH /users/{userId} { passwordProfile: { forceChangePasswordNextSignIn: true, password: newPassword, } I provided all the…
Suresh
  • 1,199
  • 2
  • 12
  • 36
3
votes
1 answer

MSAL v2 Angular Problem in Teams Desktop App

We are facing an AAD login issue for our web application (node.js + angular 10) in MS Teams Desktop & Mobile app while our users easily login by clicking a login button in any web browser or MS teams web client. In Angular, we are using two library…
1
2
3
66 67