> ## 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 Preset

> 既存のプリセットを削除します。

**Laravel実装状況**: ✅ NativePresetStoreでJSONファイルに永続化（フォールバック不要）



## OpenAPI

````yaml https://raw.githubusercontent.com/invokable/laravel-voicevox/refs/heads/main/docs/jp/laravel-openapi.json post /delete_preset
openapi: 3.1.0
info:
  title: VOICEVOX ENGINE OSS
  description: VOICEVOX OSS の音声合成エンジンです。
  version: latest
servers: []
security: []
paths:
  /delete_preset:
    post:
      tags:
        - その他
      summary: Delete Preset
      description: |-
        既存のプリセットを削除します。

        **Laravel実装状況**: ✅ NativePresetStoreでJSONファイルに永続化（フォールバック不要）
      operationId: delete_preset
      parameters:
        - name: id
          in: query
          required: true
          schema:
            type: integer
            description: 削除するプリセットのプリセットID
            title: Id
          description: 削除するプリセットのプリセットID
      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

````