Skip to main content
PUT
/
user_dict_word
/
{word_uuid}
Rewrite User Dict Word
curl --request PUT \
  --url https://api.example.com/user_dict_word/{word_uuid}
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Path Parameters

word_uuid
string
required

UUID of the word to update

Query Parameters

surface
string
required

Surface form of the word

pronunciation
string
required

Pronunciation of the word (Katakana)

accent_type
integer
required

Accent type (indicates where the pitch drops)

word_type
enum<string>

One of PROPER_NOUN (proper noun), COMMON_NOUN (common noun), VERB, ADJECTIVE, or SUFFIX

Available options:
PROPER_NOUN,
COMMON_NOUN,
VERB,
ADJECTIVE,
SUFFIX
priority
integer

Word priority (integer from 0 to 10). Larger numbers indicate higher priority. Values from 1 to 9 are recommended.

Required range: 0 <= x <= 10

Response

Successful Response

Last modified on May 27, 2026