Hi @Hieu Trung Phan ,
Hope you are doing well,
I am able to get the updated one note section displayname using Graph API Patch method. Find the details below
- Initially get all sections from the one note - Get - https://graph.microsoft.com/v1.0/me/onenote/sections
- Get the section id from the above response for which we are going to update the display name
- Update the display name using below endpoint with Patch operation Patch :https://graph.microsoft.com/v1.0/me/onenote/sections/Section ID
Request Body
{
"displayName": "New sectionName"
}
- Once the operation is completed you can check the updated section details.
Refer this link for more details
Hope this helps.
If the answer is helpful, please click Accept Answer and kindly upvote. If you have any further questions about this answer, please click Comment.