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

## Overview

The "Get Recording" endpoint allows users to retrieve call recordings from their Toingg account. By sending a POST request to the `/get_file/{fileName}` endpoint, users can access specific call recordings by specifying the file name. This functionality is crucial for reviewing and analyzing call content, ensuring that recordings are easily accessible for quality assurance, training, or compliance purposes. The endpoint supports efficient retrieval of recordings to enhance user experience and meet business requirements.


## OpenAPI

````yaml GET /get_file/{fileName}
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.toingg.com/api/v3
security: []
paths:
  /get_file/{fileName}:
    get:
      tags:
        - Recording handling
      summary: Get File
      operationId: get_file_get_file__fileName__get
      parameters:
        - name: fileName
          in: path
          required: true
          schema:
            title: Filename
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - OAuth2PasswordBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: login

````