Skip to main content

Overview

Microsoft’s cloud-based personal task management tool integrated with Microsoft 365. Through Langdock’s integration, you can access and manage Microsoft Todo directly from your conversations.
Authentication: OAuth Category: Productivity & Collaboration Availability: All workspace plans

Available Actions

List lists

microsoft_todo.list_lists
Lists the user’s Microsoft To Do lists Requires Confirmation: No Parameters: None Output: Returns the operation result

Create list

microsoft_todo.create_list
Creates a new Microsoft To Do list Requires Confirmation: Yes Parameters:
  • displayName (TEXT, Required): Title of the list
Output: Returns the operation result

Get list

microsoft_todo.get_list
Gets a Microsoft To Do list by id Requires Confirmation: No Parameters:
  • listId (ID, Required): The id of the list
Output: Returns the operation result

List tasks

microsoft_todo.list_tasks
Lists tasks in a Microsoft To Do list Requires Confirmation: No Parameters:
  • listId (ID, Required): The id of the list
Output: Returns the operation result

Create task

microsoft_todo.create_task
Creates a task in a Microsoft To Do list Requires Confirmation: Yes Parameters:
  • listId (ID, Required): The id of the list
  • title (TEXT, Required): Task title
Output: Returns the operation result

Get task

microsoft_todo.get_task
Gets a Microsoft To Do task by id Requires Confirmation: No Parameters:
  • listId (ID, Required): The id of the list
  • taskId (ID, Required): The id of the task
Output: Returns the operation result

Update task

microsoft_todo.update_task
Updates fields of a Microsoft To Do task Requires Confirmation: Yes Parameters:
  • listId (ID, Required): The id of the list
  • taskId (ID, Required): The id of the task
  • title (TEXT, Optional): New task title
  • status (SELECT, Optional): Task status
  • dueDateTime (TEXT, Optional): ISO 8601 datetime with timezone object
Output: Returns the operation result

List checklist items

microsoft_todo.list_checklist_items
Lists checklist items of a task Requires Confirmation: No Parameters:
  • listId (ID, Required): The id of the list
  • taskId (ID, Required): The id of the task
Output: Returns the operation result

Create checklist item

microsoft_todo.create_checklist_item
Creates a checklist item in a task Requires Confirmation: Yes Parameters:
  • listId (ID, Required): The id of the list
  • taskId (ID, Required): The id of the task
  • displayName (TEXT, Required): Title of the checklist item
Output: Returns the operation result