Skip to main content
DELETE
/
catalog
/
{id}
await lasso.catalog.delete('a1b2c3d4-...');
{
  "deleted": true,
  "id": "a1b2c3d4-..."
}

Documentation Index

Fetch the complete documentation index at: https://productlasso.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

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-..."
}