Skip to main content
How-To Guides Last updated: 6 March 2026

How to Flag Emails for Follow-Up

Mark emails as read or unread, flag them for follow-up with due dates, and bulk-flag multiple messages.

Manage email read status and follow-up flags to stay on top of important messages.

Mark an Email as Read

“Mark that email as read”

tool: update-email
params:
  action: "mark-read"
  id: "AAMkAGR..."

Mark an Email as Unread

“Mark it as unread — I need to come back to that”

tool: update-email
params:
  action: "mark-unread"
  id: "AAMkAGR..."

Flag an Email for Follow-Up

“Flag that email for follow-up”

tool: update-email
params:
  action: "flag"
  id: "AAMkAGR..."

Set a Due Date

“Flag it with a due date of next Friday”

tool: update-email
params:
  action: "flag"
  id: "AAMkAGR..."
  dueDateTime: "2026-03-06T17:00:00Z"

Add a start date to define a follow-up window:

tool: update-email
params:
  action: "flag"
  id: "AAMkAGR..."
  startDateTime: "2026-03-04T09:00:00Z"
  dueDateTime: "2026-03-06T17:00:00Z"

Mark a Flag as Complete

“Mark that flagged email as done”

tool: update-email
params:
  action: "complete"
  id: "AAMkAGR..."

Clear a Flag

“Remove the flag from that email”

tool: update-email
params:
  action: "unflag"
  id: "AAMkAGR..."

Bulk Operations

Flag, unflag, or complete multiple emails at once using ids:

tool: update-email
params:
  action: "flag"
  ids: ["AAMkAGR1...", "AAMkAGR2...", "AAMkAGR3..."]
  dueDateTime: "2026-03-15T09:00:00Z"

See Batch Operations for more bulk workflows.

Parameter Reference

ParameterWhat it doesUsed with
actionmark-read, mark-unread, flag, unflag, completeAll
idSingle email IDAll actions
idsArray of email IDs (batch)flag, unflag, complete
dueDateTimeFollow-up due date (ISO 8601)flag
startDateTimeFollow-up start date (ISO 8601)flag

Tips

  • Use search-emails with unreadOnly: true to find unread emails
  • Flags sync to Outlook’s task/to-do list — flagged emails appear in Microsoft To Do
  • Dates use ISO 8601 format: 2026-03-15T09:00:00Z
Was this helpful?

Related Articles