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

# Get Details

## Overview

The "Get Details" endpoint allows users to retrieve information about the contact center integrated into their Toingg account. By sending a POST request to the `/get_twilio` endpoint, users can access details such as contact center configurations, status, and other relevant information. This functionality is crucial for reviewing and managing contact center integrations, ensuring that operations are efficient and aligned with user needs. The endpoint provides comprehensive details to support effective contact center management and integration with external systems.


## OpenAPI

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

````