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

# Setting Post

> 設定を更新します。

**Laravel実装状況**: ❌ エンジン固有の機能（フォールバックのみ）



## OpenAPI

````yaml https://raw.githubusercontent.com/invokable/laravel-voicevox/refs/heads/main/docs/jp/laravel-openapi.json post /setting
openapi: 3.1.0
info:
  title: VOICEVOX ENGINE OSS
  description: VOICEVOX OSS の音声合成エンジンです。
  version: latest
servers: []
security: []
paths:
  /setting:
    post:
      tags:
        - 設定
      summary: Setting Post
      description: |-
        設定を更新します。

        **Laravel実装状況**: ❌ エンジン固有の機能（フォールバックのみ）
      operationId: setting_post
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Body_setting_post_setting_post'
        required: true
      responses:
        '204':
          description: Successful Response
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    Body_setting_post_setting_post:
      properties:
        cors_policy_mode:
          $ref: '#/components/schemas/CorsPolicyMode'
        allow_origin:
          type: string
          title: Allow Origin
      type: object
      required:
        - cors_policy_mode
      title: Body_setting_post_setting_post
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CorsPolicyMode:
      type: string
      enum:
        - all
        - localapps
      title: CorsPolicyMode
      description: CORSの許可モード。
    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

````