Forum Discussion
Lene_Kottal
Oct 19, 2025Copper Contributor
Add a page title to a OneNote page using Power Automate
Hello, I have set up a flow in Power Automate to create a new page in OneNote. It extracts information from an email, including the information that I want to be the title of the new page in OneNote...
- Oct 19, 2025
How about using <title> tag in the Page Content with proper HTML structure.
To set the page title, you need to include a <title> tag inside a complete HTML document structure in the Page Content field:<!DOCTYPE html> <html> <head> <title>@{outputs('PageTitle')}</title> </head> <body> <h1>@{outputs('PageTitle')}</h1> <p>Your other content goes here...</p> </body> </html>
spitch
Dec 03, 2025Copper Contributor
The solution did not work in my flow- there was no title in One Note. What did work was running an Update after the Create, with a delay in between.
Update details:
"target": "title",
"action": "replace",
"position": "before",
"content": @{variables('PageName')}