workflows_post_executions_retry {civis} | R Documentation |
Retry a failed task, or all failed tasks in an execution
Description
Retry a failed task, or all failed tasks in an execution
Usage
workflows_post_executions_retry(id, execution_id, task_name = NULL)
Arguments
id |
integer required. The ID for the workflow. |
execution_id |
integer required. The ID for the workflow execution. |
task_name |
string optional. If specified, the name of the task to be retried. If not specified, all failed tasks in the execution will be retried. |
Value
A list containing the following elements:
id |
integer, The ID for this workflow execution. |
state |
string, The state of this workflow execution. |
mistralState |
string, The state of this workflow as reported by mistral. One of running, paused, success, error, or cancelled |
mistralStateInfo |
string, The state info of this workflow as reported by mistral. |
user |
list, A list containing the following elements:
|
definition |
string, The definition of the workflow for this execution. |
input |
list, Key-value pairs defined for this execution. |
includedTasks |
array, The subset of workflow tasks selected to execute. |
tasks |
array, An array containing the following fields:
|
startedAt |
string, The time this execution started. |
finishedAt |
string, The time this execution finished. |
createdAt |
string, The time this execution was created. |
updatedAt |
string, The time this execution was last updated. |