Get Workflows

Introduction

Use GetWorkflow to query for a single Workflow by ID.

GetWorkflow

Inputs

workflow_id: int Workflow ID to query for

Outputs

A workflow object

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 GetWorkflow

workflow_id = 123

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


What’s Next