Base URL
https://api.videowise.com
All product endpoints require authentication. For limits and when to use bulk vs single import, see the API overview.
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.
Example Request
Response
Retrieve Product
GET /external/product/v1/:productId
Retrieves a product by its reference ID or SKU.
Headers
Query Parameters
Example Request
Response
Delete Product
DELETE /external/product/v1/:productId
Deletes a product by its reference ID or SKU.
Headers
Query Parameters
Example Request
Response
Error Codes
Related
- Authentication
- Media
- API overview
- Custom platforms — embed widgets after products are imported