Write to Timeline from Homey Script

Hi,
How can I write to the timeline from within a script?

I have the same question. Have you found a resolution?

I found this, which worked for me.

await Homey.flow.runFlowCardAction({
uri: ‘homey:manager:notifications’,
id: ‘create_notification’,
args: {
text: ‘some text ’ + someVariable + ’ some more text’
},
});

1 Like

This worked for me:

await Homey.flow.runFlowCardAction({
uri: “homey:manager:notifications”,
id: “create_notification”,
args: {
text: “some text” },
});

dont use quotes (’ ') but (" ")