LogoLogo
  • 👋Welcome to Arcee AI Docs
  • Arcee Orchestra
    • Introduction to Arcee Orchestra
    • Getting Started
    • Workflows
      • Workflow Components
        • Model Node
        • Code Node
        • Integrations
        • Knowledge Retrieval
        • Conditional Node
      • Passing Variables
      • API Invocation
        • List Available Workflows API
        • Workflow Execution API
        • Workflow Execution Steps API
        • Execution History API
        • Workflow Diagram API
        • API Code Examples
        • Upload Workflow JSON API
        • Workflow Runs API
    • Workflow Library
      • Research Automation
      • Real Time Financial Analysis
      • Blog Writer
      • Code Improvement
      • Energy Domain Assistant
    • Chat Interface
    • FAQ
  • ARCEE CONDUCTOR
    • Introduction to Arcee Conductor
    • Getting Started
    • Features & Functionality
      • Auto Mode
      • Auto Reasoning Mode
      • Auto Tools Mode
      • Compare
      • Direct Model Invocation
      • Usage
      • API
    • Arcee Small Language Models
      • Model Selection
      • Model Performance
    • Pricing
Powered by GitBook
On this page
  • Request Syntax:
  • Response Syntax:
  • Response Syntax Variables
  1. Arcee Orchestra
  2. Workflows
  3. API Invocation

Workflow Execution API

PreviousList Available Workflows APINextWorkflow Execution Steps API

Last updated 1 month ago

Description: Initiates execution of the specified workflow.

Try it out:

Request Syntax:

POST /workflows/{workflow_id}/execute
Authentication: Bearer <Your API key>
Content-type: application/json

{
  "input_variable_1": "",
  "input_variable_2": ""
}

You can get the {workflow_id} from the workflow page.

Response Syntax:

{
    "message": "",
    "run_id": ""
}
Execute a Workflow Response Example
{
    "message": "Workflow execution started",
    "run_id": "fda37c90-dd1c-4317-82d1-797b7f77fca5"
}

Response Syntax Variables

  • Message: Indication that the workflow execution has begun

  • Run id: ID for this specific execution of the workflow

Swagger Reference
Page cover image