Skip to main content
DELETE
/
products
/
{id}
Delete a product
curl --request DELETE \
  --url https://{domain}/api/site/products/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": ""
}

Authorizations

Authorization
string
header
required

Pass your API key as: Authorization: Bearer <API KEY>.

Path Parameters

id
integer
required

The id of the product.

Example:

111

Response

200 - application/json

The operation succeeded.

success
boolean
required
Example:

true

message
string
required
Example:

""

Last modified on June 20, 2026