NewWacht Bench is live — AI-assisted development for Wacht

listWebhookEventCatalogs()

Returns event catalogs as a paginated response from the shared catalog route.

Usage

The following example shows a basic usage of the backend client from @wacht/nextjs/server.

import { wachtClient } from '@wacht/nextjs/server';export async function listWebhookEventCatalogs() {  const client = await wachtClient();  return client.webhooks.listWebhookEventCatalogs();}

Signature

function listWebhookEventCatalogs(  options?: { limit?: number; offset?: number },): Promise<PaginatedResponse<WebhookEventCatalog>>

Behavior

  • Returns a backend-scoped list response for this resource.
  • Use pagination and filters from this method to build admin list views.

On this page