PUT
/
api
/
v1
/
pronunciation-dicts
Update pronunciation dictionary
curl --request PUT \
  --url https://waves-api.smallest.ai/api/v1/pronunciation-dicts \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "64f1234567890abcdef12345",
  "items": [
    {
      "word": "hello",
      "pronunciation": "həˈloʊ"
    },
    {
      "word": "goodbye",
      "pronunciation": "ɡʊdˈbaɪ"
    }
  ]
}'
{
  "id": "64f1234567890abcdef12345",
  "items": [
    {
      "word": "hello",
      "pronunciation": "həˈloʊ"
    },
    {
      "word": "goodbye",
      "pronunciation": "ɡʊdˈbaɪ"
    }
  ]
}

Body

application/json

Response

200
application/json

Successfully updated pronunciation dictionary

The response is of type object.