v1

latestOpenAPI 3.0.1MIT2026-07-26104203277.0 KB

Toggle Voice Dictionary Activation

Activates or deactivates a voice dictionary for a specific voice agent.

post/v1/voice-agents/voice-dictionaries/toggle-activation

Request body

dictionaryIdstring uuid required

UUID of the voice dictionary.

voiceAgentIdstring uuid required

UUID of the voice agent.

isActiveboolean required

Activation status.

Example request

{
  "dictionaryId": "48f7656f-098b-4c43-b165-7cfd2cc8ac30",
  "voiceAgentId": "d949f13f-40d2-4e48-ac86-b66633070603",
  "isActive": true
}

Response

Successful response

successboolean
messagestring
messageKeystring

Example response

{
  "success": true,
  "message": "Voice dictionary activation toggled successfully",
  "messageKey": "VoiceDictionaryActivationToggledSuccessfully"
}