dayNote 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.

Represents a piece of text that communicates a note relevant for a specific day on a Teams schedule.

Methods

Method Return type Description
List dayNote collection Get a list of the dayNote objects and their properties.
Create dayNote Create a new dayNote object.
Get dayNote Read the properties and relationships of a dayNote object.
Update dayNote Update the properties of a dayNote object.
Delete None Delete a dayNote object.

Properties

Property Type Description
id String ID of the day note.
dayNoteDate Date The date of the day note.
draftDayNote itemBody The draft version of this day note that is viewable by managers. Only contentType text is supported.
sharedDayNote itemBody The shared version of this day note that is viewable by both employees and managers. Only contentType text is supported.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.dayNote",
  "id": "String (identifier)",
  "dayNoteDate": "Date",
  "sharedDayNote": {
    "@odata.type": "microsoft.graph.itemBody"
  },
  "draftDayNote": {
    "@odata.type": "microsoft.graph.itemBody"
  }
}