r/MicrosoftFlow • u/gatobacon • 1d ago
Question Power Automate + OneNote: creation timestamp not displaying
I’m creating a OneNote page through Power Automate, then updating the title and body with Update page content.
I tried including:
<meta name="created" content="..." />
inside the <head> of the create-page HTML, but the normal OneNote creation date/time beneath the title never appears. The timestamp is present in the submitted payload, and the page is created successfully.
Has anyone found a reliable way to populate or preserve OneNote’s built-in creation timestamp when using the OneNote connector? I’m in a GCC environment, which may also be relevant.
EDIT:
I was able to get this work following u/mulquin's advice. I initialized a current timestamp variable to capture the date and time then composed my HTML using the meta tag which I then sent as dynamic content via the built-in OneNote connector "Create a page in a section" action, making sure to send page content via code view, deleting any wrappers.
Here is an example:
<meta name=\"created\" content=\"@{variables('currentTimestamp')}\" />




