Daytona toolbox API

The toolbox API from Daytona — 61 operation(s) for toolbox.

Documentation

Specifications

Schemas & Data

Other Resources

OpenAPI Specification

daytona-io-toolbox-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Daytona admin toolbox API
  description: Daytona Admin API — admin, audit, config, runners, docker-registry, regions, object-storage, jobs operations on the Daytona AI platform.
  version: '1.0'
  contact:
    name: Daytona Platforms Inc.
    url: https://www.daytona.io
    email: support@daytona.com
  license:
    name: Apache-2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: https://app.daytona.io/api
  description: Daytona Cloud production API
tags:
- name: toolbox
paths:
  /toolbox/{sandboxId}/toolbox/project-dir:
    get:
      deprecated: true
      operationId: getProjectDir_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: Project directory retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectDirResponse'
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Get sandbox project dir'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/user-home-dir:
    get:
      deprecated: true
      operationId: getUserHomeDir_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: User home directory retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserHomeDirResponse'
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Get sandbox user home dir'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/work-dir:
    get:
      deprecated: true
      operationId: getWorkDir_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: Work-dir retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkDirResponse'
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Get sandbox work-dir'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/files:
    get:
      deprecated: true
      operationId: listFiles_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      - name: path
        required: false
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Files listed successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FileInfo'
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] List files'
      tags:
      - toolbox
    delete:
      deprecated: true
      description: Delete file inside sandbox
      operationId: deleteFile_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      - name: recursive
        required: false
        in: query
        schema:
          type: boolean
      - name: path
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: File deleted successfully
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Delete file'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/files/download:
    get:
      deprecated: true
      description: Download file from sandbox
      operationId: downloadFile_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      - name: path
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: File downloaded successfully
          content:
            application/json:
              schema:
                type: string
                format: binary
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Download file'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/files/bulk-download:
    post:
      deprecated: true
      description: Streams back a multipart/form-data bundle of the requested paths
      operationId: downloadFiles_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DownloadFiles'
      responses:
        '200':
          description: A multipart/form-data response with each file as a part
          content:
            application/json:
              schema:
                type: string
                format: binary
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Download multiple files'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/files/find:
    get:
      deprecated: true
      description: Search for text/pattern inside sandbox files
      operationId: findInFiles_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      - name: path
        required: true
        in: query
        schema:
          type: string
      - name: pattern
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Search completed successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Match'
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Search for text/pattern in files'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/files/folder:
    post:
      deprecated: true
      description: Create folder inside sandbox
      operationId: createFolder_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      - name: path
        required: true
        in: query
        schema:
          type: string
      - name: mode
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Folder created successfully
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Create folder'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/files/info:
    get:
      deprecated: true
      description: Get file info inside sandbox
      operationId: getFileInfo_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      - name: path
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: File info retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FileInfo'
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Get file info'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/files/move:
    post:
      deprecated: true
      description: Move file inside sandbox
      operationId: moveFile_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      - name: source
        required: true
        in: query
        schema:
          type: string
      - name: destination
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: File moved successfully
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Move file'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/files/permissions:
    post:
      deprecated: true
      description: Set file owner/group/permissions inside sandbox
      operationId: setFilePermissions_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      - name: path
        required: true
        in: query
        schema:
          type: string
      - name: owner
        required: false
        in: query
        schema:
          type: string
      - name: group
        required: false
        in: query
        schema:
          type: string
      - name: mode
        required: false
        in: query
        schema:
          type: string
      responses:
        '200':
          description: File permissions updated successfully
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Set file permissions'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/files/replace:
    post:
      deprecated: true
      description: Replace text/pattern in multiple files inside sandbox
      operationId: replaceInFiles_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReplaceRequest'
      responses:
        '200':
          description: Text replaced successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ReplaceResult'
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Replace in files'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/files/search:
    get:
      deprecated: true
      description: Search for files inside sandbox
      operationId: searchFiles_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      - name: path
        required: true
        in: query
        schema:
          type: string
      - name: pattern
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Search completed successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SearchFilesResponse'
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Search files'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/files/upload:
    post:
      deprecated: true
      description: Upload file inside sandbox
      operationId: uploadFile_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      - name: path
        required: true
        in: query
        schema:
          type: string
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                  format: binary
      responses:
        '200':
          description: File uploaded successfully
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Upload file'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/files/bulk-upload:
    post:
      deprecated: true
      description: Upload multiple files inside sandbox
      operationId: uploadFiles_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/UploadFile'
      responses:
        '200':
          description: Files uploaded successfully
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Upload multiple files'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/git/add:
    post:
      deprecated: true
      description: Add files to git commit
      operationId: gitAddFiles_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GitAddRequest'
      responses:
        '200':
          description: Files added to git successfully
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Add files'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/git/branches:
    get:
      deprecated: true
      description: Get branch list from git repository
      operationId: gitListBranches_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      - name: path
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Branch list retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListBranchResponse'
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Get branch list'
      tags:
      - toolbox
    post:
      deprecated: true
      description: Create branch on git repository
      operationId: gitCreateBranch_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GitBranchRequest'
      responses:
        '200':
          description: Branch created successfully
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Create branch'
      tags:
      - toolbox
    delete:
      deprecated: true
      description: Delete branch on git repository
      operationId: gitDeleteBranch_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GitDeleteBranchRequest'
      responses:
        '200':
          description: Branch deleted successfully
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Delete branch'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/git/clone:
    post:
      deprecated: true
      description: Clone git repository
      operationId: gitCloneRepository_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GitCloneRequest'
      responses:
        '200':
          description: Repository cloned successfully
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Clone repository'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/git/commit:
    post:
      deprecated: true
      description: Commit changes to git repository
      operationId: gitCommitChanges_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GitCommitRequest'
      responses:
        '200':
          description: Changes committed successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GitCommitResponse'
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Commit changes'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/git/history:
    get:
      deprecated: true
      description: Get commit history from git repository
      operationId: gitGetHistory_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      - name: path
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Commit history retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GitCommitInfo'
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Get commit history'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/git/pull:
    post:
      deprecated: true
      description: Pull changes from remote
      operationId: gitPullChanges_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GitRepoRequest'
      responses:
        '200':
          description: Changes pulled successfully
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Pull changes'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/git/push:
    post:
      deprecated: true
      description: Push changes to remote
      operationId: gitPushChanges_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GitRepoRequest'
      responses:
        '200':
          description: Changes pushed successfully
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Push changes'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/git/checkout:
    post:
      deprecated: true
      description: Checkout branch or commit in git repository
      operationId: gitCheckoutBranch_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GitCheckoutRequest'
      responses:
        '200':
          description: Branch checked out successfully
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Checkout branch'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/git/status:
    get:
      deprecated: true
      description: Get status from git repository
      operationId: gitGetStatus_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      - name: path
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Git status retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GitStatus'
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Get git status'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/process/execute:
    post:
      deprecated: true
      description: Execute command synchronously inside sandbox
      operationId: executeCommand_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ExecuteRequest'
      responses:
        '200':
          description: Command executed successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExecuteResponse'
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Execute command'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/process/session:
    get:
      deprecated: true
      description: List all active sessions in the sandbox
      operationId: listSessions_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: Sessions retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Session'
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] List sessions'
      tags:
      - toolbox
    post:
      deprecated: true
      description: Create a new session in the sandbox
      operationId: createSession_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateSessionRequest'
      responses:
        '200':
          description: ''
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Create session'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/process/session/{sessionId}:
    get:
      deprecated: true
      description: Get session by ID
      operationId: getSession_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      - name: sessionId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: Session retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Session'
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Get session'
      tags:
      - toolbox
    delete:
      deprecated: true
      description: Delete a specific session
      operationId: deleteSession_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      - name: sessionId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: Session deleted successfully
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Delete session'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/process/session/{sessionId}/exec:
    post:
      deprecated: true
      description: Execute a command in a specific session
      operationId: executeSessionCommand_deprecated
      parameters:
      - name: X-Daytona-Organization-ID
        in: header
        description: Use with JWT to specify the organization ID
        required: false
        schema:
          type: string
      - name: sandboxId
        required: true
        in: path
        schema:
          type: string
      - name: sessionId
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SessionExecuteRequest'
      responses:
        '200':
          description: Command executed successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SessionExecuteResponse'
        '202':
          description: Command accepted and is being processed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SessionExecuteResponse'
      security:
      - bearer: []
      - oauth2:
        - openid
        - profile
        - email
      summary: '[DEPRECATED] Execute command in session'
      tags:
      - toolbox
  /toolbox/{sandboxId}/toolbox/process/session/{sessionId}/command/{commandId}:
    get:
      deprecated: true
      description: Get session command by ID
      opera

# --- truncated at 32 KB (93 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/daytona-io/refs/heads/main/openapi/daytona-io-toolbox-api-openapi.yml