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