Skip to main content
GET
/
catalog
/
webhooks
const { webhooks } = await lasso.catalog.webhooks.list();
{
  "webhooks": [
    {
      "id": "wh_abc123...",
      "url": "https://example.com/webhook",
      "events": ["product.created", "product.updated"],
      "enabled": true,
      "description": "Sync to ERP",
      "created_at": "2026-05-20T08:00:00Z",
      "updated_at": "2026-05-20T08:00:00Z"
    }
  ]
}

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.

Retrieve all webhook endpoint subscriptions configured for your company’s catalog events.
webhooks
array
Array of webhook subscription objects.
const { webhooks } = await lasso.catalog.webhooks.list();
{
  "webhooks": [
    {
      "id": "wh_abc123...",
      "url": "https://example.com/webhook",
      "events": ["product.created", "product.updated"],
      "enabled": true,
      "description": "Sync to ERP",
      "created_at": "2026-05-20T08:00:00Z",
      "updated_at": "2026-05-20T08:00:00Z"
    }
  ]
}