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

# Webhook Management Compatibility Note

> Compatibility note for older webhook endpoint management docs

This page is kept for compatibility with older docs links that described generic webhook endpoint CRUD on the public API.

## Reviewed Public Status

The reviewed public gateway does **not** currently include a canonical generic `POST /api/v1/webhooks`, `GET /api/v1/webhooks`, `PUT /api/v1/webhooks/{id}`, or `DELETE /api/v1/webhooks/{id}` management surface.

## What The Reviewed Public Surface Does Expose

* `POST /api/v1/webhooks/cards/{provider}` for provider callbacks
* `GET /api/v1/webhooks/cards/events/{card_id}` for authenticated event review
* `POST /api/v1/webhooks/cards/events/{event_id}/replay` for replay-safe operational recovery

## Important Notes

* If your tenant has configurable webhook endpoints, that capability is managed through separately issued tooling or contract documentation.
* Do not infer a generic reviewed CRUD surface from older SDK examples or legacy docs links.
* Keep callback handling replay-safe, signature-verified, and auditable regardless of how endpoint configuration is managed for your tenant.

## Next Steps

<CardGroup cols={2}>
  <Card title="Webhooks Overview" icon="webhook" href="/api-reference/webhooks/overview">
    See the reviewed public webhook surface
  </Card>

  <Card title="Webhook Events" icon="webhook" href="/api-reference/webhooks/events">
    Review the current event catalogue
  </Card>

  <Card title="Verify Signatures" icon="shield" href="/api-reference/webhooks/verify-signature">
    Validate webhook authenticity
  </Card>
</CardGroup>
