如何使用onenote api重命名onenote中的节

时间:2018-04-26 09:24:44

标签: office365 onenote

我正在尝试使用onenote API重命名部分名称。 https://www.onenote.com/api/v1.0/notebooks/ {my notebook id} / sections

  • 笔记本有重命名的部分。 这是一个错误吗?

2 个答案:

答案 0 :(得分:1)

https://developer.microsoft.com/en-us/graph/code-samples-and-sdks,其中包含PHP SDK和示例代码 https://github.com/microsoftgraph/msgraph-sdk-php/blob/dev/tests/Functional/OnenoteTest.php

使用Microsoft Graph API,您可以执行PATCH https://graph.microsoft.com/v1.0/me/onenote/sections/ {id}并授予{“displayName”:“new SectionName”}

答案 1 :(得分:1)

重命名笔记本类似于重命名部分。 PATCH https://graph.microsoft.com/v1.0/me/onenote/notebooks/ {id}并提供{" displayName":" new NotebookName"}

要删除笔记本,请使用与上述相同的网址和DELETE操作