| title | Get dayNote |
|---|---|
| description | Read the properties and relationships of a dayNote object. |
| author | lemike |
| ms.date | 01/17/2025 |
| ms.localizationpriority | medium |
| ms.subservice | teams |
| doc_type | apiPageType |
Namespace: microsoft.graph
Read the properties and relationships of a dayNote object.
[!INCLUDE national-cloud-support]
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
[!INCLUDE permissions-table]
GET /teams/{teamsId}/schedule/dayNotes/{dayNoteId}| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
Don't supply a request body for this method.
If successful, this method returns a 200 OK response code and a dayNote object in the response body.
The following example shows a request.
GET /teams/d72f9b8e-4c76-4f50-bf93-51b17aab0cd9/schedule/dayNotes/NOTE_52191d41-ce2d-4295-a477-b75941bd8e0fThe following example shows the response.
HTTP/1.1 200 OK
Content-Type: application/json
{
"id": "NOTE_52191d41-ce2d-4295-a477-b75941bd8e0f",
"dayNoteDate": "2025-01-08",
"draftDayNote": null,
"sharedDayNote": {
"contentType": "text",
"content": "Expect a lot of customers today with the holiday traffic."
}
}