DEL
Delete Product
Delete one or more products.
API endpoint
https://waclient.com/api/delete_productExample:
curl -X DELETE \
'https://waclient.com/api/delete_product' \
-H 'Content-Type: application/json' \
--data '{
"product_id": "28334218596178952",
"instance_id": "6A4B02A1XXXX",
"access_token": "EMCUH3NQQK8YXXXX"
}'Response
{
"status": "success",
"message": "Success",
"data": {
"deleted": [
"28334218596178952"
]
}
}| Parameter | Description |
|---|---|
| product_id | Catalog product ID |
| instance_id | Your instance ID |
| access_token | Your access token |
POST is also accepted as an alternative to DELETE.