Skip to main content
DELETE
/
api
/
v1
/
executions
/
{id.project}
/
{id.domain}
/
{id.name}
Terminates an in-progress :ref:`ref_flyteidl.admin.Execution`
curl --request DELETE \
  --url https://mycluster.domino.tech/api/v1/executions/{id.project}/{id.domain}/{id.name} \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": {
    "org": "<string>"
  },
  "cause": "<string>"
}
'
{}

Path Parameters

id.project
string
required

Name of the project the resource belongs to.

id.domain
string
required

Name of the domain the resource belongs to. A domain can be considered as a subset within a specific project.

id.name
string
required

User or system provided value for the resource.

Body

application/json

Request to terminate an in-progress execution. This action is irreversible. If an execution is already terminated, this request will simply be a no-op. This request will fail if it references a non-existent execution. If the request succeeds the phase "ABORTED" will be recorded for the termination with the optional cause added to the output_result.

id
Uniquely identifies the individual workflow execution to be terminated. · object

Uniquely identifies the individual workflow execution to be terminated.

cause
string

Optional reason for aborting.

Response

A successful response.

Purposefully empty, may be populated in the future.