start_thread
Create and initiate a new discussion thread in Microsoft Teams with a specified title and content, optionally mentioning a member by name for direct engagement.
Instructions
Start a new thread with a given title and content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The thread content | |
member_name | No | Member name to mention in the thread | |
title | Yes | The thread title |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The thread content",
"title": "Content",
"type": "string"
},
"member_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Member name to mention in the thread",
"title": "Member Name"
},
"title": {
"description": "The thread title",
"title": "Title",
"type": "string"
}
},
"required": [
"title",
"content"
],
"title": "start_threadArguments",
"type": "object"
}