Type Function Return value none Revision Release 2025.3721 Keywords notification, notifications, cancelNotification See also notifications.scheduleNotification() notifications.*
Removes the specified notification (or all notifications) from the scheduler, status bar, and/or notification center.
notifications.cancelNotification( [notificationId] )
A notification reference ID returned by notifications.scheduleNotification(). If no ID is passed, all notifications are cancelled.
local notifications = require( "plugin.notifications.v2" )
-- Schedule a notification
local options = {
alert = "Wake up!"
}
local notificationId = notifications.scheduleNotification( 60, options )
-- Cancel the above notification
notifications.cancelNotification( notificationId )