Tool details
| Field | Value |
|---|---|
| Name | outlook__create_draft |
| Group | Integrations |
Playground
Input schema
input-schema.json
{
"type": "object",
"properties": {
"subject": {
"type": "string",
"description": "Message subject"
},
"body": {
"type": "object",
"description": "Microsoft Graph itemBody object, for example { contentType, content }"
},
"toRecipients": {
"type": "array",
"description": "Microsoft Graph recipient array"
},
"ccRecipients": {
"type": "array",
"description": "CC recipient array"
},
"bccRecipients": {
"type": "array",
"description": "BCC recipient array"
},
"replyTo": {
"type": "array",
"description": "Reply-to recipient array"
},
"importance": {
"type": "string",
"description": "Message importance: low, normal, or high"
},
"categories": {
"type": "array",
"description": "Outlook category names"
}
},
"required": [
"subject",
"body",
"toRecipients"
],
"description": "Input schema for the outlook__create_draft tool."
}