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

# Clerk Webhook

> Handle Clerk webhook events for organization lifecycle.

Verifies Svix signature, parses the event payload, and routes to the
appropriate organization lifecycle handler based on event type.

Returns:
    Status acknowledgement.



## OpenAPI

````yaml https://api.pragmatiks.io/openapi.json post /webhooks/clerk
openapi: 3.1.0
info:
  title: Pragma API
  version: 0.1.0
servers: []
security: []
paths:
  /webhooks/clerk:
    post:
      tags:
        - webhooks
      summary: Clerk Webhook
      description: |-
        Handle Clerk webhook events for organization lifecycle.

        Verifies Svix signature, parses the event payload, and routes to the
        appropriate organization lifecycle handler based on event type.

        Returns:
            Status acknowledgement.
      operationId: webhooks-clerk_webhook
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties:
                  type: string
                type: object
                title: Response Webhooks-Clerk Webhook

````