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

# Enviar áudio de mensagem rápida

> Sobe o áudio da mensagem rápida (`multipart/form-data` com `file` e `inboxId`) e devolve o caminho no storage para usar em `audioUrl` na criação ou atualização.



## OpenAPI

````yaml https://api.jurichat.com/docs/client/openapi.json post /fast-message/audio
openapi: 3.1.0
info:
  title: JuriChat API — Documentação para Integradores
  description: ''
  version: 1.0.0
servers:
  - url: https://api.jurichat.com
    description: Production server
security:
  - apiKeyAuth: []
tags: []
paths:
  /fast-message/audio:
    post:
      tags:
        - FastMessages
      summary: Enviar áudio de mensagem rápida
      description: >-
        Sobe o áudio da mensagem rápida (`multipart/form-data` com `file` e
        `inboxId`) e devolve o caminho no storage para usar em `audioUrl` na
        criação ou atualização.
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  storagePath:
                    type: string
                    description: >-
                      Caminho do áudio no storage. É o valor a enviar em
                      `audioUrl`.
                  previewUrl:
                    type: string
                    description: URL assinada para ouvir o áudio antes de salvar.
                  mimeType:
                    type: string
                    description: MIME type do áudio enviado.
                  fileName:
                    type: string
                    description: Nome final do arquivo salvo.
                  supportedChannels:
                    type: array
                    items:
                      type: string
                    description: >-
                      Canais que conseguem entregar esse formato de áudio.
                      Formatos que não são aceitos pela Meta ou pelo Instagram
                      saem sem esses canais na lista.
                required:
                  - storagePath
                  - previewUrl
                  - mimeType
                  - fileName
                  - supportedChannels
                additionalProperties: false
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  statusCode:
                    type: number
                  code:
                    type: string
                  details:
                    anyOf:
                      - type: string
                      - type: number
                      - type: boolean
                      - type: object
                        properties: {}
                        additionalProperties: true
                    description: Detalhes adicionais do erro.
                required:
                  - message
                  - statusCode
                additionalProperties: false
      security:
        - apiKeyAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-jurichat-api-key
      description: >-
        Chave de API do escritório (criada no painel). Envie o valor no header
        x-jurichat-api-key.

````