outlook_create_task
Create a Microsoft To Do task with a due date, importance level, body, or recurrence pattern to track and organize work items in Outlook.
Instructions
Create a Microsoft To Do task with optional due date, importance, body, and recurrence.
Example: outlook_create_task(title="Send invoice", due="2026-09-01", importance="high")
reminder=True requires due and sets the reminder to the due time — Graph silently
drops a reminder that has no time.
due takes ISO 8601 or a relative offset — note +7d is seven days from now, while a bare
7d means seven days ago. importance is "low", "normal", or "high". Defaults to the
user's default list when list_id is omitted.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| due | No | ||
| body | No | ||
| title | Yes | ||
| list_id | No | ||
| reminder | No | ||
| importance | No | ||
| recurrence | No |