Skip to main content

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.
Product Object:

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.
CSV Content: The CSV content should be formatted as follows:
  • 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
CSV Format:
Field Requirements: Same as the Product Object defined in the Bulk Product Import section. Notes:
  • For single images use string format
  • For multiple images, use JSON array format: [\"url1\",\"url2\"]
  • Boolean values should be true or false
  • 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.
Product Object: Same as defined in the Bulk Product Import section.

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