Skip to main content
DELETE
/
products
/
{id}
Delete a product
curl --request DELETE \
  --url https://api.salesive.com/api/v1/products/{id} \
  --header 'Authorization: Bearer <token>'
{
  "status": 200,
  "success": true,
  "message": "Delete a product",
  "data": {}
}
Soft-deletes a product in the store (marks it deleted; it no longer appears in lists or storefront). Requires the WRITE_INVENTORY scope.

Authorizations

Authorization
string
header
required

Installed-app access token (prefix app_), issued by the OAuth install flow. The store is bound to the token server-side — never send a shop id.

Path Parameters

id
string
required

ObjectId of the product to delete.

Response

Delete a product — success.

status
integer
required
Example:

200

success
boolean
required
Example:

true

message
string
required
Example:

"Delete a product"

data
object
required
Example:
{}