Base URL
https://api.videowise.com
Bulk Product Import
POST /external/product/v1/bulk
Imports or modifies list of products into the system.
Headers
Request Body
- siteId (string, deprecated): The site ID to associate with the products.
- siteType (string, deprecated): The type of site to associate with the products.
- products (array of Product Object, required): List of products to be imported.
Example Request
Response
Bulk Product Import CSV
POST /external/product/v1/bulk/csv
Imports or modifies list of products into the system.
Headers
Request Body
- siteId (string, deprecated): The site ID to associate with the products.
- siteType (string, deprecated): The type of site to associate with the products.
- csvContent (string, required): CSV Content.
- First row: Headers containing the field names (id, sku, title, description, price, price_min, price_max, available, images, featured_image, url)
- Following rows: Product data corresponding to each Product Object field
- For single images use string format
- For multiple images, use JSON array format:
[\"url1\",\"url2\"] - Boolean values should be
trueorfalse - Ensure proper CSV escaping for fields containing commas or quotes
Example Request
Response
Single Product Import
POST /external/product/v1
Imports or modifies single product into the system.
Headers
Request Body
- siteId (string, deprecated): The site ID to associate with the product.
- siteType (string, deprecated): The type of site to associate with the product.
- product (Product Object, required): The product to be imported.