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

# List triggerable workflows

> Returns active workflows that can be triggered by another workflow or selected as a subflow target.



## OpenAPI

````yaml /api/en/workflows.yaml get /workflows/triggerable-workflows
openapi: 3.0.3
info:
  title: Altostrat Workflows API
  version: 1.0.0
  description: >-
    Create, validate, execute, and monitor SDX workflows through the public
    `/workflows` gateway path. The reference intentionally omits internal
    dashboard-builder and local development endpoints.
servers:
  - url: https://v1.api.altostrat.io
    description: Altostrat SDX Production API
security: []
tags:
  - name: Workflows
    description: Manage workflow definitions, the core automation blueprints.
  - name: Workflow Runs
    description: Execute, monitor, and manage individual workflow executions.
  - name: Vault
    description: Securely store and manage secrets used by your workflows.
  - name: Webhooks
    description: Endpoints for triggering workflows from external systems.
  - name: Utilities
    description: Helper endpoints for building and debugging workflows.
  - name: Workflow Logs
    description: Inspect workflow execution logs and aggregate log statistics.
  - name: Authorizations
    description: Manage delegated account authorization for workflow runs.
paths:
  /workflows/triggerable-workflows:
    get:
      tags:
        - Workflows
      summary: List triggerable workflows
      description: >-
        Returns active workflows that can be triggered by another workflow or
        selected as a subflow target.
      operationId: listTriggerableWorkflows
      responses:
        '200':
          description: A list of triggerable workflows.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Workflow'
        '401':
          $ref: '#/components/responses/Unauthorized'
      security:
        - BearerAuth: []
components:
  schemas:
    Workflow:
      type: object
      properties:
        id:
          type: string
          description: The unique prefixed identifier for the workflow.
          example: fl_01h3j4k5l6m7n8p9q0r1s2t3u4
        name:
          type: string
          description: The human-readable name of the workflow.
          example: Customer Onboarding
        description:
          type: string
          nullable: true
          description: A detailed description of what the workflow does.
          example: Sends a welcome email and sets up an account.
        nodes:
          type: array
          description: >-
            An array of node objects that make up the workflow graph. Only
            returned when retrieving a single workflow.
          items:
            $ref: '#/components/schemas/WorkflowNode'
        edges:
          type: array
          description: >-
            An array of edge objects that connect the nodes in the workflow
            graph. Only returned when retrieving a single workflow.
          items:
            $ref: '#/components/schemas/WorkflowEdge'
        schedule_type:
          type: string
          nullable: true
          enum:
            - manual
            - interval
            - cron
            - daily
            - weekly
            - monthly
          description: The type of schedule that triggers the workflow.
          example: manual
        schedule_value:
          type: string
          nullable: true
          description: >-
            The value for the schedule (e.g., a cron expression or interval
            string like '5 minutes').
          example: 0 9 * * *
        next_run_at:
          type: string
          format: date-time
          nullable: true
          description: The next scheduled time for the workflow to run.
          example: '2025-11-01T09:00:00.000000Z'
        is_active:
          type: boolean
          description: Indicates whether the workflow is active and can be triggered.
          example: true
        webhook_url:
          type: string
          format: uri
          nullable: true
          description: >-
            The unique, secure URL to trigger this workflow if it uses a webhook
            trigger.
          example: https://v1.api.altostrat.io/workflows/webhooks/whsec_abc123...
        created_at:
          type: string
          format: date-time
          description: The timestamp when the workflow was created.
          example: '2025-10-31T12:00:00.000000Z'
        updated_at:
          type: string
          format: date-time
          description: The timestamp when the workflow was last updated.
          example: '2025-10-31T12:30:00.000000Z'
    WorkflowNode:
      type: object
      required:
        - id
        - type
        - data
        - position
      properties:
        id:
          type: string
          description: >-
            A unique identifier for the node within the workflow (e.g., 'n1',
            'trigger').
          example: n1
        type:
          type: string
          description: The UI identifier for the node type.
          example: manual_trigger
        position:
          type: object
          properties:
            x:
              type: number
            'y':
              type: number
          example:
            x: 150
            'y': 250
        data:
          type: object
          required:
            - componentId
          properties:
            componentId:
              type: string
              description: The backend identifier for the node's logic.
              example: manual_trigger
          additionalProperties: true
          description: >-
            A flexible object containing the specific configuration for this
            node type.
    WorkflowEdge:
      type: object
      required:
        - id
        - source
        - target
      properties:
        id:
          type: string
          description: A unique identifier for the edge.
          example: e1-2
        source:
          type: string
          description: The ID of the source node.
          example: n1
        target:
          type: string
          description: The ID of the target node.
          example: n2
        sourceHandle:
          type: string
          nullable: true
          description: >-
            The specific output handle on the source node this edge connects
            from (e.g., 'true', 'false' for conditions).
          example: 'true'
    ErrorResponse:
      type: object
      properties:
        type:
          type: string
          description: A broad category for the error (e.g., 'invalid_request_error').
          example: invalid_request_error
        code:
          type: string
          description: A short, unique string identifying the specific error.
          example: parameter_missing
        message:
          type: string
          description: A human-readable description of what went wrong.
          example: The 'name' parameter is required for this request.
        doc_url:
          type: string
          description: >-
            A direct link to the documentation page for this specific error
            code.
          example: https://docs.altostrat.io/errors/parameter_missing
  responses:
    Unauthorized:
      description: >-
        Unauthorized - The request requires authentication, but a valid token
        was not provided.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Standard JWT for user sessions obtained via Altostrat authentication.

````