Basics
Features
Best Practices
Addon Development
Related Docs
Dark Mode

#Notifications

You can show notifications for all users by calling queueNotification from your Addon.

// use axios
await axios.post(`http://localhost:${cmsPort}/api/addon/${addonId}/notification`, {body: 'Hello From my Addon!'})

// use static-cms-addon
cms.queueNotification({body: 'Hello from my Addon!'})

You can also show notifications for a single user from the JavaScript running in the browser within your Addon's Screens.

<script src="/api/addon/script.js"></script>
<script>
  cms.queueNotification({body: 'Hello from my Addon!'})
</script>