Clear all notifications (inbox, archived, or both)
Optional
Options specifying which notifications to clear (inbox, archived, or all)
Confirmation of clear operation
401 - Not authenticated
import { clearAllNotifications } from "@cpod/sdk";// Clear inbox onlyawait clearAllNotifications({ type: "inbox" });// Clear archived onlyawait clearAllNotifications({ type: "archived" });// Clear all notificationsawait clearAllNotifications({ type: "all" }); Copy
import { clearAllNotifications } from "@cpod/sdk";// Clear inbox onlyawait clearAllNotifications({ type: "inbox" });// Clear archived onlyawait clearAllNotifications({ type: "archived" });// Clear all notificationsawait clearAllNotifications({ type: "all" });
Clear all notifications (inbox, archived, or both)