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

# Update audio metadata

> Update audio file metadata (name, description, tags, etc.)



## OpenAPI

````yaml /openapi.json put /api/audio-management/audio/{id}
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/audio/{id}:
    put:
      tags:
        - Call Flows
      summary: Update audio metadata
      description: Update audio file metadata (name, description, tags, etc.)
      operationId: AudioManagementController_updateAudio
      parameters:
        - name: id
          required: true
          in: path
          description: Audio UUID
          schema:
            format: uuid
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateAudioDto'
      responses:
        '200':
          description: Audio updated successfully
        '404':
          description: Audio not found
components:
  schemas:
    UpdateAudioDto:
      type: object
      properties:
        title:
          type: string
          example: Updated Title
        description:
          type: string
          example: Updated description
        usageType:
          type: string
          enum:
            - welcome
            - goodbye
            - question
            - prompt
            - hold_music
            - notification
            - other
        tags:
          example:
            - welcome
            - greeting
          type: array
          items:
            type: string

````