v1
latestOpenAPI 3.0.1MIT2026-07-26104203277.0 KBUpdate Voice Dictionary
Updates an existing voice dictionary.
patch/v1/voice-agents/voice-dictionaries/{id}
Path parameters
idstring uuid required
Example:48f7656f-098b-4c43-b165-7cfd2cc8ac30
UUID of the voice dictionary.
Request body
Example request
{
"name": "Updated Medical Terms Dictionary",
"words": [
{
"word": "ibuprofen",
"pronunciation": "eye-byoo-PROH-fen"
}
]
}Response
Successful response
Example response
{
"success": true,
"message": "Voice dictionary updated successfully",
"messageKey": "VoiceDictionaryUpdatedSuccessfully",
"data": {
"id": "48f7656f-098b-4c43-b165-7cfd2cc8ac30",
"name": "Updated Medical Terms Dictionary",
"updatedAt": "2024-01-15T11:30:00Z"
}
}