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

# Descargar grabación

> Descarga el audio grabado de una llamada.



## OpenAPI

````yaml /es/voice-api/api-reference/openapi-voice.json get /v1/voice/calls/{id}/recordings/{recordingId}/download
openapi: 3.0.3
info:
  title: Notifique API Voice
  description: >-
    Haga llamadas de voz y controle llamadas activas. Autentíquese con
    `Authorization: Bearer sk_live_...` o `x-api-key`.
  version: 1.0.0
servers:
  - url: https://api.notifique.dev
    description: Producción
security:
  - ntfVoiceBearerAuth: []
  - ntfVoiceApiKeyHeader: []
tags:
  - name: 'Voz: Llamadas'
    description: Originar, listar, consultar y controlar llamadas de voz.
paths:
  /v1/voice/calls/{id}/recordings/{recordingId}/download:
    get:
      tags:
        - 'Voice: Chamadas'
      summary: Descargar grabación
      description: Descarga el audio grabado de una llamada.
      operationId: ntfVoice_getV1VoiceRecordingDownload
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
        - name: recordingId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Archivo de audio (MP3).
          content:
            audio/mpeg:
              schema:
                type: string
                format: binary
        '401':
          $ref: '#/components/responses/NtfVoice_Unauthorized'
        '403':
          $ref: '#/components/responses/NtfVoice_Forbidden'
        '404':
          description: Grabación no encontrada.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NtfVoice_ErrorEnvelope'
components:
  responses:
    NtfVoice_Unauthorized:
      description: Clave API faltante o no válida.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/NtfVoice_ErrorEnvelope'
    NtfVoice_Forbidden:
      description: Alcance insuficiente.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/NtfVoice_ErrorEnvelope'
          example:
            success: false
            error: Forbidden
            message: 'Missing scope: voice:call'
            code: FORBIDDEN
  schemas:
    NtfVoice_ErrorEnvelope:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          type: string
        message:
          type: string
        code:
          type: string
  securitySchemes:
    ntfVoiceBearerAuth:
      type: http
      scheme: bearer
      description: 'Clave API sin formato Portador (ej.: sk_live_...).'
    ntfVoiceApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````