followupFlag resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Allows setting a flag for the user to follow up on an item later. Supported items include message and contact.

Properties

Property Type Description
completedDateTime dateTimeTimeZone The date and time that the follow-up was finished.
dueDateTime dateTimeTimeZone The date and time that the follow-up is to be finished. Note: To set the due date, you must also specify the startDateTime; otherwise, you get a 400 Bad Request response.
flagStatus String The status for follow-up for an item. Possible values are notFlagged, complete, and flagged.
startDateTime dateTimeTimeZone The date and time that the follow-up is to begin.

JSON representation

The following JSON representation shows the resource type.

{
  "completedDateTime": {"@odata.type": "microsoft.graph.dateTimeTimeZone"},
  "dueDateTime": {"@odata.type": "microsoft.graph.dateTimeTimeZone"},
  "flagStatus": "String",
  "startDateTime": {"@odata.type": "microsoft.graph.dateTimeTimeZone"}
}