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

# Compliance Webhook

> Provider webhook: verify, persist the raw event (deduped), enqueue reconcile.
Returns 200 fast; the enqueued reconcile re-fetches authoritative status.



## OpenAPI

````yaml https://www.datalab.to/openapi.json post /api/v1/compliance/webhook
openapi: 3.1.0
info:
  title: Datalab API
  version: 0.0.1
servers:
  - url: https://www.datalab.to
    description: Datalab API
security: []
paths:
  /api/v1/compliance/webhook:
    post:
      tags:
        - compliance
      summary: Compliance Webhook
      description: >-
        Provider webhook: verify, persist the raw event (deduped), enqueue
        reconcile.

        Returns 200 fast; the enqueued reconcile re-fetches authoritative
        status.
      operationId: compliance_webhook_api_v1_compliance_webhook_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response Compliance Webhook Api V1 Compliance Webhook Post

````