create_chat
Generate new chat conversations in Microsoft Teams by specifying user emails for 1:1 chats or group discussions. Optionally set a topic for group chats to enhance organization and context.
Instructions
Create a new chat conversation. Can be a 1:1 chat (with one other user) or a group chat (with multiple users). Group chats can optionally have a topic.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
topic | No | Chat topic (for group chats) | |
userEmails | Yes | Array of user email addresses to add to chat |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"topic": {
"description": "Chat topic (for group chats)",
"type": "string"
},
"userEmails": {
"description": "Array of user email addresses to add to chat",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"userEmails"
],
"type": "object"
}