I haven't found a way to delete items from a page's content with the onennote API.
Let's say my page's content is
<body>
<div id="div:{681ddef6-e8ad-0de3-2439-dcc668303696}{34}">
<p id="p:{f5837c83-d816-4337-ab6d-a52abde869a6}{13}">Delete me</p>
<p id="p:{1710a020-7fa3-46cb-a8ab-64209696e083}{14}">Keep me/p>
</div>
</body>
I can build a PATCH
request to insert, append, preprend, ... but that are no instructions to delete content.
I tried to replace the paragraph by some empty content:
[{
'target': 'p:{f5837c83-d816-4337-ab6d-a52abde869a6}{13}',
'action': 'replace',
'content': ' '
},
]
but this leads to an error:
{
"error":{
"code":"20121","message":"The PATCH argument $content: is invalid.","@api.url":"http://aka.ms/onenote-errors#C20121"
}
}
Any suggestion ? Thanks.