Skip to content

Latest commit

 

History

History
62 lines (53 loc) · 2.19 KB

File metadata and controls

62 lines (53 loc) · 2.19 KB
title dayNote resource type
description Represents a piece of text that communicates a note relevant for a specific day on a teams schedule.
author fmcgurrenw
ms.localizationpriority medium
ms.subservice teams
doc_type resourcePageType
ms.date 05/23/2024

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