Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 407 Bytes

File metadata and controls

25 lines (19 loc) · 407 Bytes
description Automatically generated file. DO NOT MODIFY
const options = {
	authProvider,
};

const client = Client.init(options);

const dayNote = {
    dayNoteDate: '2023-10-08',
    sharedDayNote: {
        contentType: 'text',
        content: 'updated note 08'
    }
};

await client.api('/teams/{teamsId}/schedule/dayNotes/{dayNoteId}')
	.version('beta')
	.put(dayNote);