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

# Delete all events

> Archive simulation runs. Pass exactly one of `scenarioSetId` (archives every run in the set; `scenarioSetId=default` targets the implicit default set) or `scenarioRunId` (archives that one run).



## OpenAPI

````yaml DELETE /api/scenario-events
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/scenario-events:
    delete:
      description: >-
        Archive simulation runs. Pass exactly one of `scenarioSetId` (archives
        every run in the set; `scenarioSetId=default` targets the implicit
        default set) or `scenarioRunId` (archives that one run).
      operationId: deleteApiScenarioEvents
      parameters:
        - in: query
          name: scenarioSetId
          schema:
            type: string
            minLength: 1
        - in: query
          name: scenarioRunId
          schema:
            type: string
            minLength: 1
      responses:
        '200':
          description: Runs archived successfully
          content:
            application/json:
              schema:
                anyOf:
                  - type: object
                    properties:
                      archived:
                        type: integer
                        minimum: 0
                      failed:
                        type: integer
                        minimum: 0
                      scenarioSetId:
                        type: string
                      hasMore:
                        type: boolean
                    required:
                      - archived
                      - failed
                      - scenarioSetId
                      - hasMore
                  - type: object
                    properties:
                      archived:
                        type: integer
                        minimum: 0
                      failed:
                        type: integer
                        minimum: 0
                      scenarioRunId:
                        type: string
                    required:
                      - archived
                      - failed
                      - scenarioRunId
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
                required:
                  - error
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
                required:
                  - error
        '404':
          description: Scenario run not found in this project
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
        '422':
          description: Missing or invalid scope parameter
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
                required:
                  - error
      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.

````