> ## 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.

# Delete Twilio

## Overview

The "Delete Contact Center Details" endpoint allows users to remove existing contact center configurations from their Toingg account. By sending a DELETE request to the `/delete_twilio` endpoint, users can delete details such as the Twilio account SID, authentication token, and phone number. This functionality is crucial for managing contact center integrations, ensuring that outdated or unnecessary configurations are efficiently removed to maintain optimal system performance and security. The endpoint supports deletions to streamline contact center management and align with evolving business requirements.

#### Example cURL Request

```bash theme={null}
curl -X 'DELETE' \
  'https://api.toingg.com/api/v3/delete_twilio' \
  -H 'accept: application/json' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
```


## OpenAPI

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

````