> ## Documentation Index
> Fetch the complete documentation index at: https://docs.profclaw.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# profclaw webhooks

> profclaw webhooks - create, delete, test, and inspect outbound webhook endpoints. Monitor delivery history and configure signing secrets for event delivery.

## Synopsis

```bash theme={null}
profclaw webhooks <subcommand> [flags]
```

## Description

Manage webhook endpoints that receive event deliveries from profClaw. Create, test, and monitor webhooks for integrating with external services.

## Subcommands

| Subcommand     | Alias | Description                         |
| -------------- | ----- | ----------------------------------- |
| `list`         | `ls`  | List configured webhooks            |
| `create <url>` |       | Create a new webhook                |
| `delete <id>`  |       | Delete a webhook                    |
| `test <id>`    |       | Send a test delivery to a webhook   |
| `history <id>` |       | Show delivery history for a webhook |

## Flags

| Flag                | Type    | Default | Description                     |
| ------------------- | ------- | ------- | ------------------------------- |
| `--secret <secret>` | string  |         | Webhook signing secret (create) |
| `-l, --limit <n>`   | number  | 20      | Max entries for history         |
| `--yes`             | boolean |         | Skip confirmation (delete)      |
| `--json`            | boolean |         | Output as JSON                  |

## Examples

<CodeGroup>
  ```bash List webhooks theme={null}
  profclaw webhooks list
  ```

  ```bash Create a webhook theme={null}
  profclaw webhooks create https://example.com/hook --secret my-secret
  ```

  ```bash Test a webhook theme={null}
  profclaw webhooks test wh_abc123
  ```

  ```bash View delivery history theme={null}
  profclaw webhooks history wh_abc123 --limit 50
  ```
</CodeGroup>

## Related

* [Webhooks API](/api-reference/webhooks)
* [Integrations Overview](/integrations/overview)
