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

# Delete Workflow



## OpenAPI

````yaml delete /v3/workflows/{flow_id}
openapi: 3.0.0
info:
  title: Lyzr API - Delete Workflow
  version: v3
  description: Delete a workflow using its flow ID.
servers:
  - url: https://agent-prod.studio.lyzr.ai
security: []
paths:
  /v3/workflows/{flow_id}:
    delete:
      summary: Delete Workflow Endpoint
      description: Delete a workflow by ID.
      operationId: deleteWorkflow
      parameters:
        - name: flow_id
          in: path
          required: true
          description: ID of the workflow to delete.
          schema:
            type: string
            example: e0ab5411-8620-41c0-acdd-bac4c35fc7c0
      responses:
        '200':
          description: Workflow deleted successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Workflow deleted
        '401':
          description: Unauthorized
        '404':
          description: Workflow not found
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````