PATCH
/
voice_configurations
/
{voice_configuration_id}
curl --request PATCH \
  --url http://localhost/api/v1/voice_configurations/{voice_configuration_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "speech_to_text": {
    "provider": "<string>",
    "watson_stt_config": {
      "api_url": "<string>",
      "api_key": "<string>",
      "model": "<string>"
    }
  },
  "text_to_speech": {
    "provider": "<string>",
    "watson_tts_config": {
      "api_url": "<string>",
      "api_key": "<string>",
      "voice": "<string>",
      "rate_percentage": 123,
      "pitch_percentage": 123,
      "language": "<string>"
    }
  }
}'
"<any>"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

voice_configuration_id
string
required

Body

application/json

Response

200
application/json

Successful Response

The response is of type any.