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

# Kill apps launched in this session

> Terminate processes previously spawned via `/app/launch`.
Omit `pid` to kill all session-launched apps; pass `pid` to
kill one. Uses `taskkill /T /F` with protected-process guards.




## OpenAPI

````yaml /openapi.yaml post /v1/sessions/{sessionId}/app/kill
openapi: 3.1.0
info:
  title: Glasswarp Platform API
  version: 1.0.0
  description: >
    Real-time visual access and native input control on Windows machines.

    See any screen. Control any PC. One API.


    ## Authentication


    All `/v1/*` endpoints require a bearer token:


    ```

    Authorization: Bearer gw_live_sk_...

    ```


    API keys are created in the [Console](/console/keys).

    Keys are scoped to your account and can access any rig with API access
    enabled.


    ## Base URL


    `https://signal.glasswarp.com`
  contact:
    name: Glasswarp
    url: https://glasswarp.com
  license:
    name: Proprietary
servers:
  - url: https://signal.glasswarp.com
    description: Production
security:
  - apiKey: []
paths:
  /v1/sessions/{sessionId}/app/kill:
    post:
      tags:
        - Apps
      summary: Kill apps launched in this session
      description: |
        Terminate processes previously spawned via `/app/launch`.
        Omit `pid` to kill all session-launched apps; pass `pid` to
        kill one. Uses `taskkill /T /F` with protected-process guards.
      operationId: killApp
      parameters:
        - name: sessionId
          in: path
          required: true
          schema:
            type: string
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties:
                pid:
                  type: integer
                  description: Optional PID from a prior launch
      responses:
        '200':
          description: Processes terminated
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                  killed:
                    type: array
                    items:
                      type: integer
        '502':
          description: Kill failed
        '504':
          description: Host timed out
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: API key in the format `gw_(live|test)_sk_<hex>`

````