Skip to main content
PUT
/
api
/
audio-management
/
audio
/
{id}
Update audio metadata
curl --request PUT \
  --url http://localhost:3000/api/audio-management/audio/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "Updated Title",
  "description": "Updated description",
  "usageType": "welcome",
  "tags": [
    "welcome",
    "greeting"
  ]
}
'

Path Parameters

id
string<uuid>
required

Audio UUID

Body

application/json
title
string
Example:

"Updated Title"

description
string
Example:

"Updated description"

usageType
enum<string>
Available options:
welcome,
goodbye,
question,
prompt,
hold_music,
notification,
other
tags
string[]
Example:
["welcome", "greeting"]

Response

Audio updated successfully