> 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 # Method name: addProductMedia(productId: string, media: Array) # Method package: wixStoresBackend # Method menu location: wixStoresBackend --> addProductMedia # Method Link: https://dev.wix.com/docs/velo/apis/wix-stores-backend/add-product-media.md # Method Description: Adds media items by ID to a product. The `addProductMedia()` function returns a Promise that resolves when the adding of the media (images or videos) to a product has started. **Limitation** The URL is not validated and no event is triggered to indicate if the media was added successfully. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Add media items to a product ```javascript /******************************* * Backend code - products.jsw * *******************************/ import wixStoresBackend from 'wix-stores-backend'; export function addProductMedia(productId, mediaData) { return wixStoresBackend.addProductMedia(productId, mediaData); } /************* * Page code * *************/ import { addProductMedia } from 'backend/myModule'; // ... const productId = ...; // get product ID const src = "wix:image://v1/1a11a1_..._1a~mv2.jpg/1a11a1_..._1a~mv2.jpg"; const choice = "Color"; const option = "Blue"; if (choice !== "" && option !== "") { const mediaData = [{ // add media item to a choice src, "choice": { choice, option } }] } else { const mediaData = [{ // add media item to the product src }] } addProductMedia(productId, mediaData) ``` ---