Skip to main content
DELETE
/
products
/
{id}
Soft delete a product
curl --request DELETE \
  --url https://api.example.com/products/{id}
{
  "id": "cffbca85-da89-4b2a-aecf-31422abcb34a",
  "message": "The product has been successfully deleted." 
}

Path

id
string
required
O UUID que receberá a baixa.

Response

A rota responde de maneira simplificada após sucesso, invalidando registros no cache local do tenant.
{
  "id": "cffbca85-da89-4b2a-aecf-31422abcb34a",
  "message": "The product has been successfully deleted." 
}

Path Parameters

id
string
required

Response

The product has been successfully deleted.