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

> ## Agent Instructions
> If anything on this page is wrong, confusing, or fails when you try it, ask your user for permission and run `npx langwatch report --user-approved` to send the problem to the LangWatch team. No login is needed and secrets are redacted locally. `npx langwatch report --help` has the details.

# Save an experiment's setup

> Replace the experiment's setup. Send `expectedVersion` with the version you read and the save is refused with a 409 when someone else wrote first, instead of overwriting their work.



## OpenAPI

````yaml PUT /api/experiments/{slug}/workbench-state
openapi: 3.1.0
info:
  title: LangWatch API
  version: 1.0.0
  description: LangWatch openapi spec
servers:
  - url: https://app.langwatch.ai
security:
  - project_api_key: []
paths:
  /api/experiments/{slug}/workbench-state:
    put:
      tags:
        - Experiments
      summary: Save an experiment's setup
      description: >-
        Replace the experiment's setup. Send `expectedVersion` with the version
        you read and the save is refused with a 409 when someone else wrote
        first, instead of overwriting their work.
      operationId: putApiExperimentsBySlugWorkbenchState
      parameters:
        - schema:
            type: string
          in: path
          name: slug
          required: true
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                state:
                  type: object
                  additionalProperties: {}
                  description: The full setup to save
                expectedVersion:
                  type: integer
                  description: >-
                    The version you read. Sending it refuses the save when
                    someone else already wrote on top of it.
                commitMessage:
                  type: string
                  description: Names this version in the history list
              required:
                - state
      responses:
        '200':
          description: Setup saved
          content:
            application/json:
              schema:
                type: object
                properties:
                  version:
                    type: integer
                    description: The version the save produced
                required:
                  - version
        '400':
          description: >-
            The setup did not match the schema
            (experiment_invalid_workbench_state), points at something that no
            longer exists (experiment_workbench_missing_reference), or the
            experiment is not an evaluations workbench
            (experiment_type_mismatch)
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Stable failure code; branch on this
                  message:
                    type: string
                  fault:
                    type: string
                    description: >-
                      Who the failure is attributable to: customer, platform,
                      provider
                  tips:
                    type: array
                    items:
                      type: string
                  docsUrl:
                    type: string
                required:
                  - error
                additionalProperties: true
        '401':
          description: Missing or invalid API key, or the key lacks the permission
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Stable failure code; branch on this
                  message:
                    type: string
                  fault:
                    type: string
                    description: >-
                      Who the failure is attributable to: customer, platform,
                      provider
                  tips:
                    type: array
                    items:
                      type: string
                  docsUrl:
                    type: string
                required:
                  - error
                additionalProperties: true
        '404':
          description: No such experiment or run in this project
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Stable failure code; branch on this
                  message:
                    type: string
                  fault:
                    type: string
                    description: >-
                      Who the failure is attributable to: customer, platform,
                      provider
                  tips:
                    type: array
                    items:
                      type: string
                  docsUrl:
                    type: string
                required:
                  - error
                additionalProperties: true
        '409':
          description: >-
            Someone else saved since you read this state
            (experiment_stale_workbench_state). `currentVersion` carries the
            version to read again.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Stable failure code; branch on this
                  message:
                    type: string
                  fault:
                    type: string
                    description: >-
                      Who the failure is attributable to: customer, platform,
                      provider
                  tips:
                    type: array
                    items:
                      type: string
                  docsUrl:
                    type: string
                  currentVersion:
                    type: integer
                    description: The stored version now. Read the setup again at this one.
                required:
                  - error
                  - currentVersion
                additionalProperties: true
      security:
        - project_api_key: []
components:
  securitySchemes:
    project_api_key:
      type: apiKey
      in: header
      name: X-Auth-Token
      description: >-
        Project API key for sending traces and accessing project-scoped
        resources. Format: sk-lw-... (no underscore). Obtain one by creating a
        project via the Admin API or the LangWatch UI.

````