# How do I create a notification from HomeyScript?

**URL:** https://community.homey.app/t/how-do-i-create-a-notification-from-homeyscript/24329
**Category:** Apps
**Created:** [January 12, 2020, 10:31pm UTC](https://community.homey.app/t/how-do-i-create-a-notification-from-homeyscript/24329 "2020-01-12T22:31:51Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![rzarajczyk](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/rzarajczyk/32/8447_2.png) [@rzarajczyk](https://community.homey.app/u/rzarajczyk)
#### Post date: [January 12, 2020, 10:31pm UTC](https://community.homey.app/t/how-do-i-create-a-notification-from-homeyscript/24329/1 "2020-01-12T22:31:51Z")

</div>

Hi, I’m playing around with HomeyScript, I know it’s possible to use a Homey Web API instance inside the script. I know there’s a documentation available at [https://developer.athom.com/docs/api/HomeyAPI.html](https://developer.athom.com/docs/api/HomeyAPI.html). But I can’t find a way to create a notification using that API - there are methods to see notifications (`HomeyAPI.ManagerNotifications .getNotifications()`), event delete them… but not to create. Am I missing something?

---

<div class="post-metadata">

### Author: ![Dijker](https://avatars.discourse-cdn.com/v4/letter/d/b9bd4f/32.png) [@Dijker](https://community.homey.app/u/Dijker)
#### Post date: [January 12, 2020, 10:39pm UTC](https://community.homey.app/t/how-do-i-create-a-notification-from-homeyscript/24329/2 "2020-01-12T22:39:26Z")

</div>

No you are not missing anything.  
From the Web API you are not able to create notification afaik.  
It need to be done by a HomeyApp [https://apps.developer.athom.com/Notification.html](https://apps.developer.athom.com/Notification.html)

---

<div class="post-metadata">

### Author: ![Bernhard\_Oberfrank](https://sea1.discourse-cdn.com/flex025/user_avatar/community.homey.app/bernhard_oberfrank/32/79096_2.png) [@Bernhard\_Oberfrank](https://community.homey.app/u/Bernhard_Oberfrank)
#### Post date: [August 6, 2024, 9:30am UTC](https://community.homey.app/t/how-do-i-create-a-notification-from-homeyscript/24329/3 "2024-08-06T09:30:28Z")

</div>

```auto
await Homey.flow.runFlowCardAction({
uri: "homey:flowcardaction:homey:manager:notifications:create_notification",
id: "homey:manager:notifications:create_notification",
args: {text: "Text"},
});

```
