update_workflow_stages
imerit_ango.sdk.SDK.
update_workflow_stages(project_id, stages)
Update the workflow of your project.
Parameters
project_id: string
The unique identifier for the project. You can find the project ID in the user interface or retrieve it using the
list_projectsfunction.
stages: List[dict]
The workflow of the project, in JSON format.
Stage types and their required fields:
Note: To get an idea of what you can pass as input in Stages, you may create a workflow in a project, then run:
As the returned JSON, you'll get the JSON representation of the project's workflow, which you can use as a skeleton to create your own workflow JSONs.
Returns:
output: dict
A dictionary containing the result of the operation.
Example
Create a workflow from scratch
Disable the "Auto Forward on Upload" option on the Start stage
Prevent requeueing to Complete stage
Last updated