Hello,
I'm trying to create some tools to handle tactic in python. Given that I have the asset that I am working on and I know which part of the workflow I am looking at. is there a way with python to return a list of available task statuses?
get task status python
Sun, 01/08/2017 - 04:29
#1
get task status python
Looking through the API code, there really isn't a good clean way of doing this. Even the widget that selects the status list drop down on the Table does it manually. The way to do this is to use server code (not API)
attrs = pipeline.get_process_attrs(process)
task_pipeline_code = attrs.get('task_pipeline')
Not pretty, admittedly, but it should work.