List and Get Workflow Execution
Get Workflow Execution
GET /workflow_executions/:id
Permission workflow_execution:read
| workflow_execution:read_any
- WFS asks AS if user is allowed to request this resource
- Return Workflow execution instance from database
List Workflow Execution
GET /workflow_executions?user="uid&status=:status
Permission workflow_execution:list
| workflow_execution:list_all
- WFS asks AS if user is allowed to request the resources
- Query
user
, required forworkflow_execution:list
- Filter workflow executions started by
:uid
- Filter workflow executions started by
- Query
status
, optional- Filter workflow executions by status
- Possible atomic Values:
pending
,scheduled
,running
,canceled
,success
,error
-
active
includepending
,scheduled
,running
-
finished
includecanceled
,success
,error
- Return filtered workflow execution instances from database