Get Workflows

Find workflows and relevant attributes

Introduction

Use GetWorkflow to query for a single Workflow by ID.

GetWorkflow

Inputs

πŸ“₯

GetWorkflow Inputs

workflow_id: int Workflow id to query for

Outputs

πŸ“€

GetWorkflow Outputs

Found Workflow object

πŸ“˜

Returned attributes

id: int
name: str
status: str
review_enabled: bool
auto_review_enabled: bool
components: List[WorkflowComponent]
component_links: List[WorkflowComponentLinks]
created_by: int
created_at: datetime
submission_runnable: boolf

Try It Out

Try out the GetWorkflow call:

from indico.queries import GetSubmission

workflow_id = 123

wf = client.call(GetWorkflow(workflow_id=workflow_id))

What’s Next