Workflows

Delete a Workflow

Delete a workflow and every one of its versions.

Permanent. Running and queued calls against this workflow continue to completion against the version they captured at call time; subsequent attempts to call the workflow return 404 Not Found.

Functions referenced by the deleted workflow are not removed — they remain available to other workflows or for direct reference.

Any connectors attached to the workflow are torn down first. Teardown is best-effort: per-connector failures are reported in connectorErrors but do not block the deletion, so check that array rather than relying on the status code alone.

delete/v3/workflows/{workflowName}

Path parameters

workflowNamestring required

Response

The request has succeeded.

errorstring

Error message if the workflow deletion failed.

Changes