> 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 # BulkAddProductsToStore # Package: suppliersHub # Namespace: MarketplaceProvider # Method link: https://dev.wix.com/docs/api-reference/business-solutions/suppliers-hub/marketplace-provider-service-plugin/bulk-add-products-to-store.md ## Introduction Retrieves full product details from the marketplace provider and adds them to the site owner's Wix Stores catalog. Wix calls this method when a site owner selects products to import from the marketplace provider. Wix calls this method to create products in the site's Wix Stores catalog, linked to the provider's product IDs. --- ## REST API ### Schema ``` Method: bulkAddProductsToStore Description: Retrieves full product details from the marketplace provider and adds them to the site owner's Wix Stores catalog. Wix calls this method when a site owner selects products to import from the marketplace provider. Wix calls this method to create products in the site's Wix Stores catalog, linked to the provider's product GUIDs. URL: null Method: POST Method parameters: param name: productReferences | type: array | description: Product references to add to the site owner's store. | validation: minItems 1, maxItems 100 - name: providerProductId | type: string | description: Unique product identifier on the provider's platform. | validation: minLength 1, maxLength 36 - name: options | type: object | description: Additional provider-specific data for this product. For example, other internal identifiers of the product on the provider's side. - name: visibleInStore | type: boolean | description: Whether the product is visible in the site's store. Default: `false` Return type: BulkAddProductsToStoreResponse - name: results | type: array | description: Results of adding each product to the store. | validation: minItems 1, maxItems 100 - name: itemMetadata | type: ItemMetadata | description: Item metadata. - name: id | type: string | description: Item GUID. Should always be available, unless it's impossible (for example, when failing to create an item). | validation: minLength 1, maxLength 36 - name: originalIndex | type: integer | description: Index of the item within the request array. Allows for correlation between request and response items. - name: success | type: boolean | description: Whether the requested action was successful for this item. When `false`, the `error` field is populated. - name: error | type: ApplicationError | description: Details about the error in case of failure. - name: code | type: string | description: Error code. - name: description | type: string | description: Description of the error. - name: data | type: object | description: Data related to the error. - name: item | type: ProductReference | description: Added product reference. - name: providerProductId | type: string | description: Unique product identifier on the provider's platform. | validation: minLength 1, maxLength 36 - name: options | type: object | description: Additional provider-specific data for this product. For example, other internal identifiers of the product on the provider's side. - name: visibleInStore | type: boolean | description: Whether the product is visible in the site's store. Default: `false` - name: bulkActionMetadata | type: BulkActionMetadata | description: Bulk action metadata. - name: totalSuccesses | type: integer | description: Number of items that were successfully processed. - name: totalFailures | type: integer | description: Number of items that couldn't be processed. - name: undetailedFailures | type: integer | description: Number of failures without details because detailed failure threshold was exceeded. ``` ### Examples ### Bulk Add Products To Store Adds selected marketplace products to a Wix store in bulk ```curl curl -X POST \ 'https://www.wixapis.com/v2/bulk/add-products-to-store' \ -H 'Authorization: ' \ -H 'Content-Type: application/json' \ -d '{ "productReferences": [ { "providerProductId": "73cfa507-221b-417a-bd62-c7b62065068e", "visibleInStore": true }, { "providerProductId": "ced405ed-fc48-4ace-987c-3677656e2fa7", "visibleInStore": true }, { "providerProductId": "b1874e5f-a9fd-4362-8f5a-5193ba265bb1", "visibleInStore": false } ] }' ``` ---