1,084 questions
-3
votes
1
answer
87
views
Creating Teams Team via HTTP results in 403
When making a post request:
{
"displayName": "My Team",
"description": "",
"visibility": "public",
"members": [
{
...
0
votes
0
answers
57
views
Teams bot not getting Meeting Info/
I am making a bot to fetch meeting transcripts after the meeting ends. This is the code I am refering: https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/meetings-transcription/...
1
vote
0
answers
31
views
How to synchronize Outlook meeting room check-ins with external systems via Graph API?
We are integrating our system with Outlook using the Microsoft Graph API (v5.80.0 Java SDK) and Kotlin 1.9.23.
Our application synchronizes meetings created in Outlook bidirectionally with our own ...
1
vote
0
answers
152
views
Call is establishing and quick Terminated with Error "ServerInternal Error. DiagCode: 500#1203002.@". Bot is unable to join Meetings
I'm building a Teams media bot to join scheduled meetings as a guest for audio streaming and transcription. The POST request to /communications/calls. The call creates successfully but terminates ...
0
votes
1
answer
47
views
Create event not showing event in attendee's calendar
I have implemented MS Graph API in my Laravel project for create event, it's creating event successfully. After event creation orgnaizer calender (Teams) showing event but attendee's calendar (Teams) ...
2
votes
1
answer
207
views
Why does the Set-CsTeamsSettingsCustomApp cmdlet return a MethodNotAllowed response?
I'm using the Set-CsTeamsSettingsCustomApp PowerShell cmdlet, which is part of the Microsoft Teams PowerShell module.
Documentation for this cmdlet is available here.
I'm using version 7.2.0 of the ...
0
votes
0
answers
90
views
Not able to get members from TeamsInfo.getMember(context,...) after package updates
I recently updated the following package in my Teams bot project:
"@microsoft/teamsfx": "^4.0.0" // previously using 3.0.0
After the update, some code broke due to changes in the ...
0
votes
0
answers
84
views
Is it possible to trigger an event at the moment a Teams call is received and retrieve the caller's phone number?
I have a question about Microsoft Teams functionality and would greatly appreciate any help or guidance.
We are trying to implement a system where, when a customer calls my Teams number (via PSTN), a ...
0
votes
0
answers
108
views
Permission error creating MS Graph subscription for messages in chats where Teams app is installed
I want to create an MS Graph subscription to track messages in chats where a given (configurable) Teams app is installed, like explained here.
To do so, I'm using following curl:
curl --location '...
0
votes
0
answers
34
views
How to understand Ms Team provisioning flags and Group Calendars
If I make a new educationClass Team using the following commands.
$user = Get-MgUser -Filter "Mail eq '[email protected]'"
$params = @{
"[email protected]" = "https://...
0
votes
0
answers
52
views
How to interact with a Calendar for a Microsoft Education Class Team?
I'm looking to push taught classes and other events into pupil and staffs O365 calendar environment. One method I considered was making events in the calendars of the class teams as I already have ...
0
votes
1
answer
38
views
HTTP Request on getTeamsUserDetails ends with 302
Hi I have created a simple automated flow
it is triggered on every night and should fire a request to
https://graph.microsoft.com/v1.0/reports/getTeamsUserActivityUserDetail(period='D7')
in the http ...
0
votes
1
answer
86
views
How to get a specific instance of a recurring meeting in the onlineMeetings endpoint
We have a number of recurring meetings in a calendar that have the same joinWebUrl and Meeting Id.
We need to retrieve the specific onlineMeeting to update Participants, but when we query using ...
0
votes
0
answers
23
views
Trying to add a PSTN call to a Teams PSTN Call
0
My Teams Bot receives a PSTN call. As soon as it attends the call It tries to add a Another PSTN call to the existing call But the Response says Server Error. P.S The Teams Bot can make Outbound ...
0
votes
1
answer
128
views
Microsoft Teams cloned via Graph API not showing all members in Admin Center
I'm using Microsoft Graph API with PowerShell to clone a Microsoft Team. The cloning process appears successful — the cloned team shows up in Microsoft Teams with all original members, standard ...
1
vote
0
answers
27
views
Instructor receive a blank popup window when accessing More->Settings->Meeting Options when they launch the Teams meeting
I am trying to test graph API for one of the services I am using.
But when I create a meeting with attendee or a meeting with 2 or more presenters, instructor can not see the meeting options.
Here is ...
0
votes
0
answers
104
views
The Thread Id is invalid - Microsoft graph API for team
I have gone through the documentations as well other resources still, not able to find the RCA for the issue. I am trying to post a message on a team channel using the graph API.
I am able to get the ...
1
vote
0
answers
80
views
Adding Teams Decisions app via Graph API throws "onBehalfOfUserMri cannot be null or empty"
Recently adding Teams app to a team programmatically via MS Graph API SDK (occurs on v3 and v4, haven't tested with v5 as that would require somewhat large changes in the code so will only do that if ...
-3
votes
1
answer
199
views
Getting Microsoft Teams Calls For the member
I am working on a task that requires integration with Microsoft Teams Calls, I want to retrieve the calls form the users, I Explored Microsoft Graph API and found this api: GET /communications/...
0
votes
1
answer
196
views
How can I grant Application permissions using dynamic consent
I've got an application in Entra which I have got delegated permissions I've been setting via admin consent without issue. I need to add some application permissions to my app, and I'm trying to do ...
1
vote
1
answer
120
views
msgraph API Go SDK and how to auth with additional roles; `/.default` gives 403 even though admin access granted
I'm using the new Go Lang SDK, but I just switched to it. Before refactoring to the SDK, I was using raw calls to the API endpoint, which was doing exactly the same thing.
I'm building an application ...
0
votes
1
answer
111
views
Create Teams OnlineMeeting via Graph API using delagated permission now get "No application access policy"
I was able to created (Teams) OnlineMeetings via graph API with my own app registration and delegated permissions using device_code flow and the /me endpoint. I left the code untouched but now, I do ...
0
votes
1
answer
159
views
Microsoft graph - Update event request set the flag isOnlineMeeting from true to false then true unwantedly
I have an event that has isOnlineMeeting set to true, a PATCH request with the below content to update the event
{"Subject":"Test Online Event 2025 a","Body":{"...
0
votes
1
answer
192
views
How to determine associated Sharepoint site collections of a team/group?
I'm using Microsoft 365 and Teams. I need to check the rights of users in a team in MS Teams and in addition given access to files / folders within the folder structure as well.
My first approach was ...
1
vote
0
answers
107
views
Set lobbyBypassSettings on Graph API Create Event
I've used lobbyBypassSettings on Graph API request for creating online meetings.
Example:
{
"lobbyBypassSettings":
{
"isDialInBypassEnabled": true,
"...
0
votes
1
answer
197
views
Add coorganizer to existing Teams Online Meeting
I'm having trouble to add coorganizer to an existing Teams OnlineMeeting.
Method PATCH to API enpoint
$"{GraphBaseUrl}v1.0/users/{organizer_id}/onlineMeetings/{meetingId}"
var ...
0
votes
1
answer
104
views
Bad Request Error when create Team meeting with Application token
I'm trying to use Application token to create a meeting on behalf of a user and is getting error Bad Request - Request payload cannot be null. I'm able to generate access token, get User object.
Do I ...
0
votes
0
answers
126
views
MS Teams bot configuration Bad gateway(502) Error Code -911
Ms Teams App's interface
// 20250212172704
// https://teams.microsoft.com/api/chatsvc/in/v1/agents/28:0bc21a2c-b9c1-4bd5-9989-0c5aaf324d64/invoke
{
"errorCode": 911,
"message":...
0
votes
0
answers
35
views
Retrieve "configurableProperties" value once set by the admin in an organisation for an app in Teams?
I have an app that is published to the Microsoft Store, which contains the following in its app manifest file,
"configurableProperties": [ "name", "smallImageUrl", "...
0
votes
0
answers
69
views
Unable to access newly uploaded document in sharepoint for 30min
I am uploading the document in MSTeams channel, with below C# code,
var uploadedFile = await graphClient.Groups[teamId].Drive.Items[channelId].ItemWithPath(fileName).Content.Request().PutAsync<...
0
votes
0
answers
109
views
MS Graph API call returns empty pages in paginated query
I am using GraphServiceClient in C# to fetch teams chats with this request:
var chats = await graphClient.Chats
.GetAsync(requestConfiguration =>
...
1
vote
0
answers
307
views
Accessing MS Teams in power shell using app-only authentication
I'm trying to do what is explained in this article :
https://learn.microsoft.com/en-us/microsoftteams/teams-powershell-application-authentication
And app service principal is assigned to the Teams ...
0
votes
0
answers
81
views
How attach files to Post in channel using Power Apps?
I Want to do Post in channel using power apps and I want when I click on button "Attach files". It will open directory to select file and after selection it will show attached files on ...
0
votes
0
answers
109
views
The remote server returned an error: (400) Forbidden in PowerShell when running a script
I am trying to get a report of all Teams chats in my school between teachers and students. This is the script I am running in PowerShell.
# Define your tenant ID, client ID, and client secret
$...
0
votes
1
answer
181
views
Requesting User Consent for Calls.AccessMedia.All for an application, but problem with AdminConsentRequired
I have a web application that functions as a notetaker for Microsoft Teams. Essentially, I need to use the Calls.AccessMedia.All scope for this application to access Microsoft Teams recordings. The ...
3
votes
2
answers
350
views
How create a subscription for teams chat messages?
I'm trying to create a subscription to receive notifications about user messages, but I'm receiving an ExtensionError. I'm basing myself on Team chats
I've tried to create a subscription with the ...
0
votes
0
answers
82
views
Microsoft Teams Notification Password Expiry Issue
Microsoft Graph API - Is it possible send chat message using client credentials flow?
I was using grant type as password to generate bearer token for sending Teams notification with my application (I ...
0
votes
1
answer
114
views
proactive messaging to a meeting chat without manual installtion of the bot
I have a bot which sends notifications to a specific Teams meeting, based on the following sample: meeting notifications bot.
In order to get this bot to successfully send messages to a meeting chat, ...
0
votes
0
answers
53
views
how to edit our own message subject in teams channel using power apps?
I have created one powerapps app which I will publish in channel and from that app I want to edit Subject of my messages. That I have send before. How can I do it?
I know that only the user which have ...
0
votes
1
answer
137
views
I encounted a graph error while trying to fix somethings at the backend
backend-1 | GraphError
backend-1 | at new GraphError (/app/node_modules/@microsoft/microsoft-graph-client/lib/src/GraphError.js:34:28)
backend-1 | at Function. (/app/node_modules/@...
0
votes
0
answers
114
views
How to Set Subject while posting in channel using MicrosoftTeams.PostMessageToChannelV3()?
I am trying to add subject while posting in Teams channel. I Am using MicrosoftTeams.PostMessageToChannelV3() by searching I got to know That I can use and teams will recognize but, It is not working....
0
votes
1
answer
71
views
Is it possible to develop a backend API (no UI) to fetch Microsoft Teams transcripts using graph APIs for multiple tenants?
I'm trying to build a backend app to fetch the Teams meeting transcripts within my tenant and in future it may be used to fetch transcripts for multiple tenants as well. So, I am exploring the app-...
0
votes
1
answer
682
views
How to get all messages post by person in team channels using power apps in teams
I have teams group in which there are multiple teams channel. I want to get all the post messages by any user and from those messages only want messages which contains "Open" as a string in ...
1
vote
1
answer
129
views
How to create chart in power apps which shows number of post done by team member in teams channel?
I want to create one chart which shows number of post by each team member in the channel. I am using power apps in teams. Chart should have number of post on y-axis and name of person on x-axis.
0
votes
1
answer
83
views
How to use the exachangeId in the meetingReference attachment of chatMessageAttachment
I use retrieve-channel-message graph API with application permission, and find the attachment for schedule meeting with channel
GET https://graph.microsoft.com/v1.0/teams/``<team-id>/channels/&...
0
votes
0
answers
121
views
Patching Event/OnlineMeeting Attendees does not remove all attendees
I used C# Graph SDK(Microsoft.Graph 5.61.0) to test Patch an Event with Application Permission
/*Calendars.ReadWrite | Application | Read and write calendars in all mailboxes | Yes*/
var client = ...
0
votes
0
answers
169
views
Outbound Call to a Teams End Point using AppHostedMedia in Bot Framework: How to generate Media Session Configuration?
Re: https://learn.microsoft.com/en-us/graph/api/application-post-calls?view=graph-rest-1.0&tabs=http#example-2-create-peer-to-peer-voip-call-with-application-hosted-media
We want a bot that can ...
0
votes
1
answer
127
views
Unable to Retrieve All Webinars, But Can Fetch Single Webinar by ID
I'm working on a project where I need to use the Microsoft Graph API to fetch a list of webinars and display them in our front-end application. However, I've encountered an issue that I can't seem to ...
0
votes
0
answers
285
views
Microsoft Graph API - MSTeams application permissions required to create group chat with app installed
We have a Microsoft Teams application that coordinates users in different ways. We'e moving away from Teams channels and instead want to invite users into a group chat and perform some actions there.
...
-2
votes
1
answer
857
views
Sending a message to MS teams channel using GraphAPI
I am trying to use Microsoft Graph API to post a message to teams channel using SDK, I have registered an APP in Microsoft Azure, for Delegated permission, added ChannelMessage.Send and for ...