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

# Upload audio file

> Upload and process audio file for use in call flows



## OpenAPI

````yaml /openapi.json post /api/audio-management/upload
openapi: 3.0.0
info:
  title: GoMobile Backend API
  description: >-
    API documentation for GoMobile telephony platform - automated calling
    campaigns, interactive voice flows, and call management
  version: '1.0'
  contact: {}
servers:
  - url: http://localhost:3000
    description: Local Development
security: []
tags:
  - name: Organizations
    description: Multi-tenant organization management
  - name: Teams
    description: Team structure and hierarchy
  - name: Contacts
    description: Customer contact management (CRM)
  - name: Entities
    description: Business entities management
  - name: Audiences
    description: Contact segmentation and groups
  - name: Programs
    description: Call campaign configuration
  - name: Call Flows
    description: Interactive call flow builder
paths:
  /api/audio-management/upload:
    post:
      tags:
        - Call Flows
      summary: Upload audio file
      description: Upload and process audio file for use in call flows
      operationId: AudioManagementController_uploadAudio
      parameters: []
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/UploadAudioDto'
      responses:
        '201':
          description: Audio uploaded successfully
        '400':
          description: Invalid file or data
components:
  schemas:
    UploadAudioDto:
      type: object
      properties:
        title:
          type: string
          example: Welcome Message
        description:
          type: string
          example: Welcome audio for customers
        usageType:
          type: string
          enum:
            - welcome
            - goodbye
            - question
            - prompt
            - hold_music
            - notification
            - other
        tags:
          example:
            - welcome
            - greeting
          type: array
          items:
            type: string

````