> ## Documentation Index
> Fetch the complete documentation index at: https://kawax.biz/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete User Dict Word

> Delete a word registered in the user dictionary.

**Laravel Implementation Status**: ✅ Persisted to JSON file with NativeUserDict (no fallback required)



## OpenAPI

````yaml https://raw.githubusercontent.com/invokable/laravel-voicevox/refs/heads/main/docs/en/laravel-openapi.json delete /user_dict_word/{word_uuid}
openapi: 3.1.0
info:
  title: VOICEVOX ENGINE OSS
  description: VOICEVOX OSS  text-to-speech synthesis engine.
  version: latest
servers: []
security: []
paths:
  /user_dict_word/{word_uuid}:
    delete:
      tags:
        - User Dictionary
      summary: Delete User Dict Word
      description: >-
        Delete a word registered in the user dictionary.


        **Laravel Implementation Status**: ✅ Persisted to JSON file with
        NativeUserDict (no fallback required)
      operationId: delete_user_dict_word
      parameters:
        - name: word_uuid
          in: path
          required: true
          schema:
            type: string
            description: UUID of the word to delete
            title: Word Uuid
          description: UUID of the word to delete
      responses:
        '204':
          description: Successful Response
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````