| title | dayNote resource type |
|---|---|
| description | Represents a note relevant for a specific day on a Teams schedule. |
| author | lemike |
| ms.date | 01/17/2025 |
| ms.localizationpriority | medium |
| ms.subservice | teams |
| doc_type | resourcePageType |
Namespace: microsoft.graph
Represents a note relevant for a specific day on a Teams schedule.
| 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. |
| 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. |
None.
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"
}
}