# 単語登録 指定した辞書に新しい単語を登録します。書き起こし時に正確な変換が可能になります。 Endpoint: POST /api/v1/dictionaries/{dictionary_id}/words Version: 1.6.0 Security: APIKeyHeader ## Path parameters: - `dictionary_id` (string, required) 単語を追加したい辞書のID ## Request fields (application/json): - `word` (string, required) 登録する単語 - `reading` (string) 単語の読み仮名(任意) ## Response 200 fields (application/json): - `word_id` (string) 単語の一意な識別子 - `dictionary_id` (string) 単語が所属する辞書のID - `word` (string) 辞書に登録する単語 - `reading` (string) 単語の読み仮名(任意) - `created_at` (string) 単語が作成された日時 - `updated_at` (string) 単語が最後に更新された日時 ## Response 400 fields (application/json): - `error_id` (string) サポート問い合わせ時に使用するエラーの一意な識別子 - `error_code` (number) エラーの種類を示すコード - `error_message` (string) エラーの詳細な説明