> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Introduction ## Article: Introduction ## Article Link: https://dev.wix.com/docs/velo/apis/wix-media-v2/introduction.md ## Article Content: # Introduction The Wix Media API provides the functionality to manage media files and folders in a site's Media Manager. With the Wix Media API, you can: - Manage folders and files in your Media Manager. - Generate URLs for uploading files and downloading files and folders. Learn more about the [Media Manager](https://support.wix.com/en/article/wix-media-about-the-media-manager) and how to access it. > **Note**: > To get absolute URLs for Wix Media resources, including scaled and cropped images, use the [SDK Media API](https://dev.wix.com/docs/sdk/core-modules/sdk/media.md). ## Before you begin To use the wix-media API, import `wixMedia` from the `wix-media.v2` module: ```javascript import wixMedia from "wix-media.v2"; ``` ## Use cases - Update a file's display name. - Bulk Delete Files. - Bulk restore all non-permanently deleted images. ## Terminology **System folders:** Folders in the Media Manager's file system directory. There are 3 types of system folders: - **Root Folders:** Main categories of folders the Media Manager. - `MEDIA_ROOT`: Contains all files and folders in the Media Manager's 'Site Files' tab in the UI. - `TRASH_ROOT`: Contains all files and folders in the Media Manager's 'Trash' tab in the UI. - `VISITOR_UPLOADS_ROOT`: Contains all files and folders created by site visitors or members. > **Notes:** > > - The `MEDIA_ROOT` system folder is different from the `media-root` folder of the Media Manager. The `MEDIA_ROOT` system folder contains all media in all levels of the 'Site Files' tab in the UI, while the `media-root` folder of the Media Manager contains only the media in the root level of the 'Site Files' tab in the UI. Similar relationships exist between `TRASH_ROOT` and `trash-root`, and `VISITOR_UPLOADS_ROOT` and `visitor-uploads`. > - The `VISITOR_UPLOADS_ROOT` folder is located in the 'Site Files' tab in the UI. However, it is its own root folder and isn't returned when searching in the `MEDIA_ROOT` folder. - **Virtual Folders:** Special categories of folders in the Media Manager that are hidden from the UI and can't be deleted. - `MOBILE_UPLOADS`: Contains all media uploaded using mobile devices. - `PURCHASED_ITEMS`: Contains all media imported using a purchase flow. - **Other Folders:** - `VIDEO_MAKER`: Contains all videos created using Wix Video Maker. Located in the 'Site Files' tab in the UI.