This API handles operations related to importing, retrieving, and deleting products in bulk or individually.
https://api.videowise.com
/external/product/v1/bulk
Key | Type | Required | Description |
---|---|---|---|
X-Videowise-Access-Token | String | Yes | Access token to authorize the request. |
Field | Type | Required | Description |
---|---|---|---|
id | String | Yes | The unique identifier of the product. |
sku | String | Yes | The SKU of the product. |
title | String | Yes | The name of the product. |
description | String | No | The description of the product. |
price | Number | No | The price of the product. |
price_min | Number | No | The minimum price of the product. |
price_max | Number | No | The maximum price of the product. |
available | Boolean | Yes | Whether the product is available. |
images | [String] | No | List of image URLs for the product. |
featured_image | String | Yes | The image URL of the product. |
url | String | Yes | The URL of the product. |
Status | Description |
---|---|
200 | Products imported successfully. |
400 | Bad request or site not found. |
401 | Unauthorized access. |
/external/product/v1/bulk/csv
Key | Type | Required | Description |
---|---|---|---|
X-Videowise-Access-Token | String | Yes | Access token to authorize the request. |
[\"url1\",\"url2\"]
true
or false
Status | Description |
---|---|
200 | Products imported successfully. |
400 | Bad request or site not found. |
401 | Unauthorized access. |
/external/product/v1
Key | Type | Required | Description |
---|---|---|---|
X-Videowise-Access-Token | String | Yes | Access token to authorize the request. |
Status | Description |
---|---|
200 | Product imported successfully. |
400 | Bad request or site not found. |
401 | Unauthorized access. |
/external/product/v1/:productId
Key | Type | Required | Description |
---|---|---|---|
X-Videowise-Access-Token | String | Yes | Access token to authorize the request. |
Parameter | Type | Required | Description |
---|---|---|---|
siteId | String | Yes | The site ID to search for. |
siteType | String | Yes | The site type to search for. |
Field | Type | Description |
---|---|---|
id | String | The unique identifier of the product. |
sku | String | The SKU of the product. |
title | String | The name of the product. |
featured_image | String | The image URL of the product. |
url | String | The URL of the product. |
Status | Description |
---|---|
200 | Product retrieved successfully. |
400 | Bad request or product not found. |
401 | Unauthorized access. |
/external/product/v1/:productId
Key | Type | Required | Description |
---|---|---|---|
X-Videowise-Access-Token | String | Yes | Access token to authorize the request. |
Parameter | Type | Required | Description |
---|---|---|---|
siteId | String | Yes | The site ID to search for. |
siteType | String | Yes | The site type to search for. |
Field | Type | Description |
---|---|---|
message | String | Confirmation of product deletion. |
Status | Description |
---|---|
200 | Product deleted successfully. |
400 | Bad request or product could not be deleted. |
401 | Unauthorized access. |
Status | Description |
---|---|
400 | Bad request. This occurs when required parameters or body fields are missing. |
401 | Unauthorized. Access token is missing or invalid. |
404 | Resource not found. Site or product does not exist. |