List workflow executions
workflows_list_executions( id, limit = NULL, page_num = NULL, order = NULL, order_dir = NULL )
id | integer required. The ID for this workflow. |
---|---|
limit | integer optional. Number of results to return. Defaults to 20. Maximum allowed is 50. |
page_num | integer optional. Page number of the results to return. Defaults to the first page, 1. |
order | string optional. The field on which to order the result set. Defaults to id. Must be one of: id, updated_at, created_at. |
order_dir | string optional. Direction in which to sort, either asc (ascending) or desc (descending) defaulting to desc. |
An array containing the following fields:
integer, The ID for this workflow execution.
string, The state of this workflow execution.
string, The state of this workflow as reported by mistral. One of running, paused, success, error, or cancelled
string, The state info of this workflow as reported by mistral.
list, A list containing the following elements:
id integer, The ID of this user.
name string, This user's name.
username string, This user's username.
initials string, This user's initials.
online boolean, Whether this user is online.
string, The time this execution started.
string, The time this execution finished.
string, The time this execution was created.
string, The time this execution was last updated.