onFolderDeleted( )


Notes:

Triggered when a folder is deleted.

If the movedToTrash property in the event object is true, the folder was moved to the Media Manager's trash bin. If the movedToTrash property in the event object is false, the folder was permanently deleted.

Permissions
Manage Bookings Services and Settings
Manage Media Manager
Read Media Manager
Manage Events
Access Verticals by Automations
Set Up Automations
Manage Portfolio
Manage Restaurants - all permissions
Learn more about app permissions.
Method Declaration
Copy
function onFolderDeleted(handler: function): void;
Method Parameters
handlerfunction

handler(event: FolderDeletedEnvelope): void | Promise<void>

JavaScript
import { folders } from "@wix/media"; folders.onFolderDeleted((event) => { // handle your event here });
Did this help?