This interface defines the structure of the request body used when updating an existing AI Workflow.
export interface UpdateAiWorkflowRequest {
    name?: string;
    description?: string;
    trigger_type?: 'manual' | 'webhook' | 'schedule' | 'event';
    steps?: any[];
    is_active?: boolean;
}

Properties

  • name (string, optional): The updated name of the AI workflow.
  • description (string, optional): The updated description of the AI workflow.
  • trigger_type (string, optional): The updated type of trigger for the workflow (‘manual’, ‘webhook’, ‘schedule’, or ‘event’).
  • steps (any[], optional): The updated array of steps in the workflow.
  • is_active (boolean, optional): The updated active status of the workflow.