update_thread
Modify an existing Microsoft Teams thread by adding new content or mentioning a member. Use the thread ID and desired content to update discussions efficiently.
Instructions
Update an existing thread with new content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The content to update in the thread | |
member_name | No | Member name to mention in the thread | |
thread_id | Yes | The thread ID as a string in the format '1743086901347' |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The content to update in the thread",
"title": "Content",
"type": "string"
},
"member_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Member name to mention in the thread",
"title": "Member Name"
},
"thread_id": {
"description": "The thread ID as a string in the format '1743086901347'",
"title": "Thread Id",
"type": "string"
}
},
"required": [
"thread_id",
"content"
],
"title": "update_threadArguments",
"type": "object"
}