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"
]
}
'Update audio file metadata (name, description, tags, etc.)
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"
]
}
'Audio UUID
Audio updated successfully