Light Mode
Delete Product By SKU
DELETE
/products/sku/{sku}Last modified: 10 days ago
This endpoint allows you to delete a specific product by passing the sku
as a path parameter.
Request
Path Params
sku
string
required
The Product SKU. List of Product SKU can be found here.
Request samples
Responses
Deleted Successfully(202)
Not Found(404)
Deleted Successfully
HTTP Code: 202
Content Type : JSONapplication/json
Data Schema
No schema defined
Example
{
"status": 202,
"success": true,
"data": {
"message": "The Object has been removed successfully",
"code": 202
}
}
Last modified: 10 days ago