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

# Data Deletion Callback

> Meta Data Deletion Request callback.

Meta calls this when a user requests deletion of their data.
Returns a confirmation with a tracking URL per Meta's spec.
See: https://developers.facebook.com/docs/development/create-an-app/app-dashboard/data-deletion-callback



## OpenAPI

````yaml /openapi.json post /api/v1/whatsapp/deauthorize
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/whatsapp/deauthorize:
    post:
      tags:
        - WhatsApp
      summary: Data Deletion Callback
      description: >-
        Meta Data Deletion Request callback.


        Meta calls this when a user requests deletion of their data.

        Returns a confirmation with a tracking URL per Meta's spec.

        See:
        https://developers.facebook.com/docs/development/create-an-app/app-dashboard/data-deletion-callback
      operationId: data_deletion_callback_api_v1_whatsapp_deauthorize_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````