Skip to content

Latest commit

 

History

History
61 lines (52 loc) · 2.17 KB

File metadata and controls

61 lines (52 loc) · 2.17 KB
title description author ms.localizationpriority ms.subservice doc_type
dayNote resource type
Represents a piece of text that communicates a note relevant for a specific day on a teams schedule.
fmcgurrenw
medium
teams
resourcePageType

dayNote resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

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"
  }
}