> ## 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 Insagram Info

## Overview

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


## OpenAPI

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

````