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

# Trigger example workflow

> Triggers the example workflow which runs 5 sequential steps, each taking approximately 30 seconds.



## OpenAPI

````yaml api-docs/app-team/atlas.json post /v1/atlas/example-workflow
openapi: 3.1.1
info:
  title: Atlas API
  version: 1.0.0
  description: >-
    Atlas API supporting the k0rdent Enterprise Atlas console with internal
    infrastructure management (bare metal, k0rdent clusters, VMs) for cloud
    administrators, featuring a look and feel similar to Google Cloud and other
    major cloud providers
servers:
  - url: http://localhost:4010
    description: Local Development
security: []
paths:
  /v1/atlas/example-workflow:
    post:
      tags:
        - Workflows
      summary: Trigger example workflow
      description: >-
        Triggers the example workflow which runs 5 sequential steps, each taking
        approximately 30 seconds.
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties:
                requestId:
                  type: string
                  description: Optional request ID for tracking
            example:
              requestId: req-12345
      responses:
        '202':
          description: Workflow triggered successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                      type:
                        type: string
                      status:
                        type: string
                      triggeredFrom:
                        type: string
                      startedAt:
                        type: string
                      publicAccessToken:
                        type: string
                    required:
                      - id
                      - type
                      - status
                      - startedAt
                  meta:
                    type: object
                    properties:
                      requestId:
                        type: string
                      timestamp:
                        type: string
                    required:
                      - requestId
                      - timestamp
                required:
                  - success
                  - data
                  - meta
        '500':
          description: Failed to trigger workflow
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - false
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      details:
                        type: object
                        additionalProperties:
                          nullable: true
                    required:
                      - code
                      - message
                  meta:
                    type: object
                    properties:
                      requestId:
                        type: string
                      timestamp:
                        type: string
                    required:
                      - requestId
                      - timestamp
                required:
                  - success
                  - error
                  - meta

````