graph
5 TopicsMS Teams Graph API @Mention a Bot
We're doing some work with a bot that's been added as a member to a Teams channel, and are attempting to send a message to the bot through the at_mention function to have the bot take some action. Below is the full JSON request that we're posting to the Messages API. The post appears to at_mention the bot, but the bot doesn't respond. Have tested this with multiple bots in this channel, and doesn't appear that the problem is specific to the particular bot we're working with. Any help would be greatly appreciated! POST https://graph.microsoft.com/beta/teams/<team-id>/channels/<channel-id>/messages Content-type: application/json { "body": { "contentType": "html", "content": "<div><div><at id=\"0\">Cisco Webex Meetings</at> site test.webex.com</div>\n</div>" }, "mentions": [ { "id": 0, "mentionText": "Cisco Webex Meetings", "mentioned": { "application": { "displayName": "Cisco Webex Meetings", "id": "<bot-id>", "applicationIdentityType": "bot" } } } ] }3.4KViews0likes2CommentsClicking on the notification in the feed doesnt reload the tab
I have created an app which loads some data in the webview from my site. I am able to send notifications to MS Teams, if I am on other tabs like Shifts/Chat and I click on the activity feed the first notification opens the my application's tab and loads the data but if I click on other notification in the activity feed the tab doesnt reload. This behaviour is consistent 😞 Looks like the application tab is not reloaded everytime you click on a notification. I am testing this on web browser.568Views0likes0CommentsMS-Teams Graph | listing all callID's or the call history of a member | call duration
dear wonderful people , for a small intern project I want to implement the call duration of the ms-teams into the customer relationship management system database - I don't manage to list all callID's to then get the startDateTime & endDateTime of the microsoft.graph.callRecords segment. - what is the most convenient way to get the list of all user IDs of my organization? - how do I get the list of all call IDs? - how do i get all call durations or the call history of a member? - how do I subscribe to an update for each call made by a user in the group? - how do I write the session data to the database? Thank you to anyone who can help me. I have been dealing with this for a while and am currently trying to find a solution with CQD and PowerBiConnect. Im willing to pay a pocketmoney of 100-150€ or more for a working solution proposal and the willingness for light verbal support if I can't get the implementation right. Greetings from Germany4.9KViews0likes2CommentsMS Teams Graph API : Is there a way to edit messages/replies via API?
Hi, Im trying to edit messages/replies via Api in Teams but i can not find any documentation about it. I've found other documentation for the same purpose with mail: https://docs.microsoft.com/sv-se/graph/api/message-update?view=graph-rest-beta&tabs=http PATCH /me/messages/{id} so i was trying the same logic in graph explorer for messages: PATCH https://graph.microsoft.com/beta/teams/{teamId}/channels/{channelId}/messages/{messageId} { "body": { "content": "Trying to update messages!" } } but i just get UnknownError back. Does anyone know how to do this? is it possible in any way? Thanks in advance!2KViews0likes0Comments