Skip to main content
POST
/
api
/
v1
/
executions
/
recover
Recreates a previously-run workflow execution that will only start executing
curl --request POST \
  --url https://mycluster.domino.tech/api/v1/executions/recover \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": {
    "project": "<string>",
    "domain": "<string>",
    "name": "<string>",
    "org": "<string>"
  },
  "name": "<string>",
  "metadata": {
    "mode": "MANUAL",
    "principal": "<string>",
    "nesting": 123,
    "scheduled_at": "2023-11-07T05:31:56Z",
    "parent_node_execution": {
      "node_id": "<string>",
      "execution_id": {
        "project": "<string>",
        "domain": "<string>",
        "name": "<string>",
        "org": "<string>"
      }
    },
    "reference_execution": {
      "project": "<string>",
      "domain": "<string>",
      "name": "<string>",
      "org": "<string>"
    },
    "system_metadata": {
      "execution_cluster": "<string>",
      "namespace": "<string>"
    },
    "artifact_ids": [
      {
        "artifact_key": {
          "project": "<string>",
          "domain": "<string>",
          "name": "<string>",
          "org": "<string>"
        },
        "version": "<string>",
        "partitions": {
          "value": {}
        },
        "time_partition": {
          "value": {
            "static_value": "<string>",
            "time_value": "2023-11-07T05:31:56Z",
            "triggered_binding": {
              "partition_key": "<string>",
              "bind_to_time_partition": true,
              "time_transform": {
                "transform": "<string>",
                "op": "MINUS"
              }
            },
            "input_binding": {
              "var": "<string>"
            },
            "runtime_binding": {}
          },
          "granularity": "UNSET"
        }
      }
    ]
  }
}
'
{
  "id": {
    "project": "<string>",
    "domain": "<string>",
    "name": "<string>",
    "org": "<string>"
  }
}

Body

application/json

Request to recover the referenced execution.

Request to recover the referenced execution.

id
Encapsulation of fields that uniquely identifies a Flyte workflow execution · object
name
string
metadata
object

Represents attributes about an execution which are not required to launch the execution but are useful to record. These attributes are assigned at launch time and do not change.

Response

A successful response.

The unique identifier for a successfully created execution. If the name was not specified in the create request, this identifier will include a generated name.

id
Encapsulation of fields that uniquely identifies a Flyte workflow execution · object