Skip to content

Latest commit

 

History

History
35 lines (30 loc) · 6.07 KB

File metadata and controls

35 lines (30 loc) · 6.07 KB

WorkflowExecutionResponse

Example Usage

import { WorkflowExecutionResponse } from "@mistralai/mistralai/models/components";

let value: WorkflowExecutionResponse = {
  workflowName: "<value>",
  executionId: "<id>",
  rootExecutionId: "<id>",
  status: "TIMED_OUT",
  startTime: new Date("2026-07-06T18:38:00.483Z"),
  endTime: new Date("2025-12-31T15:27:44.423Z"),
  result: "<value>",
};

Fields

Field Type Required Description
workflowName string ✔️ The name of the workflow
workflowId string The ID of the workflow
deploymentName string The name of the deployment that ran this execution
executionId string ✔️ The ID of the workflow execution
parentExecutionId string The parent execution ID of the workflow execution
rootExecutionId string ✔️ The root execution ID of the workflow execution
runId string The unique run identifier (database UUID)
userId string The ID of the user who triggered the execution
status components.WorkflowExecutionStatus ✔️ The status of the workflow execution
startTime Date ✔️ The start time of the workflow execution
endTime Date ✔️ The end time of the workflow execution, if available
totalDurationMs number The total duration of the trace in milliseconds
result any ✔️ The result of the workflow execution, if available