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

# Get all workflows

> Retrieves all workflows of the workspace the API key is associated with



## OpenAPI

````yaml workflow-api/workflow-api.yaml get /workflows
openapi: 3.0.0
info:
  title: Workflow API
  version: 1.0.0
  description: API for managing workflows and their metadata
servers:
  - url: https://api.cloudcruise.com
    description: CloudCruise Platform Production API Server
security:
  - AuthScheme: []
paths:
  /workflows:
    get:
      summary: Get all workflows
      description: Retrieves all workflows of the workspace the API key is associated with
      operationId: getWorkflows
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Workflow'
        '400':
          description: Bad request - Missing workspace ID
        '401':
          description: Unauthorized - Invalid or missing authentication
        '500':
          description: Internal server error
components:
  schemas:
    Workflow:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the workflow
        name:
          type: string
          description: Name of the workflow
        description:
          type: string
          nullable: true
          description: Description of the workflow
        created_at:
          type: string
          format: date-time
          description: Timestamp when the workflow was created
        updated_at:
          type: string
          format: date-time
          description: Timestamp when the workflow was last updated
        workspace_id:
          type: string
          format: uuid
          description: ID of the workspace this workflow belongs to
        created_by:
          type: string
          format: uuid
          description: ID of the user who created the workflow
        enable_popup_handling:
          type: boolean
          description: Whether popup handling is enabled for this workflow
        enable_xpath_recovery:
          type: boolean
          description: Whether XPath recovery is enabled for this workflow
        enable_node_description_enrichment:
          type: boolean
          description: >-
            Whether node descriptions are auto-enriched for reliability
            improvements
        enable_error_code_generation:
          type: boolean
          description: Whether error code generation is enabled for this workflow
        enable_service_unavailable_recovery:
          type: boolean
          description: Whether service unavailable recovery is enabled for this workflow
        enable_incorrect_form_input_recovery:
          type: boolean
          description: Whether incorrect form input recovery is enabled
        enable_password_update_recovery:
          type: boolean
          description: >-
            Whether password update recovery is enabled. When a site forces a
            password change, the Maintenance Agent classifies the error and
            sends a notification.
        enable_tfa_setup_recovery:
          type: boolean
          description: >-
            Whether automatic TFA setup recovery is enabled. When a site
            requires two-factor authentication setup during login, the
            Maintenance Agent can autonomously complete the enrollment and
            update the vault credential.
        enable_action_timing_recovery:
          type: boolean
          description: Whether action timing recovery is enabled
        origin_catalog_workflow_id:
          type: string
          format: uuid
          nullable: true
          description: ID of the catalog workflow this was forked from (if applicable)
        origin_catalog_version_number:
          type: integer
          nullable: true
          description: Version number of the catalog workflow this was forked from
        track_updates_from_catalog:
          type: boolean
          description: Whether to track updates from the origin catalog workflow
      required:
        - id
        - name
        - created_at
        - updated_at
        - workspace_id
        - created_by
        - enable_popup_handling
        - enable_xpath_recovery
        - enable_error_code_generation
        - enable_service_unavailable_recovery
        - enable_action_timing_recovery
        - track_updates_from_catalog
  securitySchemes:
    AuthScheme:
      type: apiKey
      name: cc-key
      in: header
      description: >-
        API key-based authentication. Provide your CloudCruise API key in the
        cc-key header.

````