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

# Stripe Webhook

> Verify the Stripe signature on an incoming webhook, then process the event idempotently: unknown types are skipped and duplicates deduped via stripe_events table.



## OpenAPI

````yaml /openapi.json post /api/v1/webhooks/stripe
openapi: 3.1.0
info:
  description: Change Impact Engine for multi-repo systems
  title: Riftmap
  version: 1.12.3
servers: []
security: []
paths:
  /api/v1/webhooks/stripe:
    post:
      tags:
        - billing
      summary: Stripe Webhook
      description: >-
        Verify the Stripe signature on an incoming webhook, then process the
        event idempotently: unknown types are skipped and duplicates deduped via
        stripe_events table.
      operationId: stripe_webhook_api_v1_webhooks_stripe_post
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties:
                  type: string
                title: Response Stripe Webhook Api V1 Webhooks Stripe Post
                type: object
          description: Successful Response

````