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

# Remove Whatsapp Info

## Overview

The "Remove WhatsApp Info" endpoint allows users to disconnect their WhatsApp account from Toingg by deleting stored credentials. This ensures that WhatsApp data is no longer accessible, enhancing privacy and security.


## OpenAPI

````yaml DELETE /remove_whatsapp_info
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.toingg.com/api/v3
security: []
paths:
  /remove_whatsapp_info:
    delete:
      tags:
        - Whatsapp Integration
      summary: Remove Whatsapp Info
      operationId: remove_whatsapp_info_remove_whatsapp_info_delete
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - OAuth2PasswordBearer: []
components:
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: login

````