Skip to main content
DELETE
/
catalog
/
{id}
await lasso.catalog.delete('a1b2c3d4-...');
{
  "deleted": true,
  "id": "a1b2c3d4-..."
}
Soft-deletes a product by setting its deleted_at timestamp. The product will no longer appear in list or lookup results but can be restored later.
id
string
required
The unique product ID (UUID).
deleted
boolean
Always true on success.
id
string
The deleted product’s ID.
await lasso.catalog.delete('a1b2c3d4-...');
{
  "deleted": true,
  "id": "a1b2c3d4-..."
}