User.list_workflows

User.list_workflows(max_results=None) → list<Workflow>

Returns a list of workflows owned by the user. If the user isn't you, only workflows that you have view access to will be included in the list. The properties attribute on each workflow will be populated with the list definition of a workflow resource.

Parameters:

max_results : int, default None If specified, will only return up to max_results workflows

Returns:

list<Workflow>

Examples

user = redivis.user("imathews")
workflows = user.list_workflows()

for workflow in workflows:
    print(workflow.properties["name"])

Last updated