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

# List Managed Processes

> Lists all background processes managed by the system.



## OpenAPI

````yaml api-reference/openapi.json get /api/bash/processes/managed
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: http://localhost:4242/{computer_name}
    description: Local development server
    variables:
      computer_name:
        default: your-computer-name
        description: Computer name
security: []
paths:
  /api/bash/processes/managed:
    get:
      tags:
        - bash
      summary: List Managed Processes
      description: Lists all background processes managed by the system.
      operationId: listManagedProcesses
      responses:
        '200':
          description: Successfully retrieved process list
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ProcessInfo'
                type: array
                title: Response Listmanagedprocesses
              example:
                - pid: 1234
                  command: long-running-task
                  status: running
                  output: |-
                    Processing...
                    50% complete
        '500':
          description: Internal server error
components:
  schemas:
    ProcessInfo:
      properties:
        pid:
          type: integer
          title: Pid
          description: Process ID
          example: 1234
        command:
          type: string
          title: Command
          description: Command that was executed
          example: ls -la
        status:
          type: string
          title: Status
          description: Current status of the process
          example: running
        output:
          anyOf:
            - type: string
            - type: 'null'
          title: Output
          description: Process output if available
          example: |-
            total 20
            drwxr-xr-x  3 user  group   96 Mar 10 12:34 .
      type: object
      required:
        - pid
        - command
        - status
      title: ProcessInfo
      example:
        command: ls -la
        output: |-
          total 20
          drwxr-xr-x  3 user  group   96 Mar 10 12:34 .
        pid: 1234
        status: running

````