如何通过 REST API 在 Teams 频道内更新(编辑)Microsoft Teams 消息(话题或回复)
How to update (edit) a Microsoft Teams message (thread or reply) inside a Teams channel via REST API
我可以在 Microsoft Teams 的频道内写线程消息。
有什么方法可以通过 REST API?
更新它的内容
谢谢
根本不,更新方法和删除方法
都不是
Graph API 中有两个可用的东西,一个是 Post 方法,第二个是 Get方法。这是针对 Microsoft Teams.
频道内的消息
Get channel message,
GET /teams/{id}/channels/{id}/messages/{id}
GitHub: channel-get-message.md
Create chatMessage in a channel
POST /teams/{id}/channels/{id}/messages
如果您想更新频道或日历活动,那么 API 可供他们使用。
- Patch channel
PATCH /teams/{id}/channels/{id}
- Update event
其中一些 API 是测试版,因此,
APIs under the /beta
version in Microsoft Graph are subject to change.
Use of these APIs in production applications is not supported.
Idea posted on Microsoft User Voice, Update Teams Message/Channel Posts with Graph API.
我可以在 Microsoft Teams 的频道内写线程消息。 有什么方法可以通过 REST API?
更新它的内容谢谢
根本不,更新方法和删除方法
都不是Graph API 中有两个可用的东西,一个是 Post 方法,第二个是 Get方法。这是针对 Microsoft Teams.
频道内的消息Get channel message,
GET /teams/{id}/channels/{id}/messages/{id}
GitHub: channel-get-message.md
Create chatMessage in a channel
POST /teams/{id}/channels/{id}/messages
如果您想更新频道或日历活动,那么 API 可供他们使用。
- Patch channel
PATCH /teams/{id}/channels/{id}
- Update event
其中一些 API 是测试版,因此,
APIs under the
/beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported.Idea posted on Microsoft User Voice, Update Teams Message/Channel Posts with Graph API.