Create a Basic Workflow
A basic workflow is a blank slate. It only contains one node, the input node. Workflow components can be added to a basic workflow after the fact.
Documentation for creating a workflow through the Indico App can be found on our knowledge base.
Prerequisites
At least one dataset must exist for the user creating a workflow.
CreateWorkflow
Inputs
name: strName of your workflowdataset_id:intDataset ID
Outputs
id: intname: strstatus: strreview_enabled: boolauto_review_enabled: boolcomponents: List[WorkflowComponent]component_links: List[WorkflowComponentLinks]created_by: intcreated_at: datetimesubmission_runnable: bool
Try It Out
Try out the CreateWorkflow call.
from indico.queries import CreateWorkflow
dataset_id = 123
wf_name = "My Workflow"
wf = client.call(CreateWorkflow(dataset_id=datset_id, name=wf_name))
Updated about 12 hours ago
What’s Next
