All Questions
14 questions
0
votes
1
answer
127
views
The navigation bind for the user was missing when creating Team using micorsoft graph api
Error: "The navigation bind for the user was missing in request" when creating a team using Microsoft Graph API
Body:
I am encountering an error while trying to create a team using the ...
-2
votes
1
answer
230
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 ...
0
votes
0
answers
74
views
when created Teams schedule with Graph api as a "Online meeting", but it was created "personal schedule"
I would like to create a teams schedule with Micorosoft Graph api as a "Online Meeting", but now it was created as the "personal schedule".
Microsoft Graph api code is created in ...
1
vote
1
answer
96
views
Subscription count = 0 even though the subscription is created by MSTeams App on behalf of the user for the transcripts resource
Following https://learn.microsoft.com/en-us/graph/teams-changenotifications-callrecording-and-calltranscript we tried creating the subscription for the transcripts available at the tenant-level.
...
0
votes
0
answers
97
views
The date provided in the filter query must be within the last 30 days and not in the future
I have the following request which works fine when days is less than 30.
days = 29
end = datetime.now(timezone.utc)
start = end - timedelta(days=days)
query_parameters = CallRecordsRequestBuilder....
0
votes
0
answers
40
views
Manage Teams Files permissions programmatically
I'm creating MS Teams via Graph API and adding external users to the Teams. Currently, these externals can delete and upload files under the Files tab of the Team. They should only be able to read the ...
1
vote
0
answers
636
views
Get-CsOnlineUser equivalent in MS Graph REST API?
I want to use the MS Graph REST API to look up a Microsoft Teams user, similar to the get-csOnlineUser powershell cmdlet.
Specifically, I want to fetch these fields:
lineUri
onlineVoiceRoutingPolicy
...
3
votes
1
answer
917
views
Is there any way to get the recording url and timeline of Microsoft Teams meeting using GRAPH API's
I'm trying to fetch the recording details and timeline file using GRAPH API of Teams, but it is not there is there any way we can fetch them?
I can able to fetch the recording using one drive but ...
0
votes
2
answers
1k
views
How to capture reaction of an emoji to a message in Microsoft Team
Is there a way to capture the reaction/emojies on messages in Microsoft Teams using Microsoft Teams webhook (I'm coding in python)? If not can I do this using other tools ( Microsoft Graph, Power Apps,...
4
votes
2
answers
6k
views
How to reply to a existing message in Microsoft Teams channel via Rest API(incoming webhook)?
I am able to post a message to a team channel using incoming webhook(code sample below). What I am trying to achieve next is to reply to the same message whenever I have a new update. It's just a ...
0
votes
1
answer
805
views
Sending pro-active messages to Microsoft Teams using Graph API (not Bot Framework)
Recently noticed that Microsoft Flow (Power Automate) has enabled sending cards to individual chats. This was not possible in 2020, so I was wondering if it is now possible to send adaptive cards to ...
1
vote
1
answer
2k
views
Is it possible to create MS Teams meeting using MS Graph API v1.0?
I am trying to create a MS Teams meeting using MS Graph API. It's documented that in order to create meeting, Delegated "OnlineMeetings.ReadWrite" permission should be assigned to Azure ...
0
votes
2
answers
936
views
Microsoft Teams Python Botbuilder Proactive Messaging
What was simple in Webex now seems fairly complicated in the Microsoft world.
What I specifically am looking to do is:
Create a bot in the Azure Bot Framework (Done)
Identify recipient ids using the ...
2
votes
1
answer
493
views
I am getting incomplete output from the Graph API
I am writing a Teams-Slack integration. The point is to get our Shifts defined in MS Teams and change the descriptions of certain Slack channels according to who is on Shift.
In any case, the Slack ...