delete_flow_run
Remove a specific workflow execution from Prefect's automation platform by providing its unique identifier to clean up completed or failed runs.
Instructions
Delete a flow run.
Args: flow_run_id: The flow run UUID
Returns: Confirmation message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
flow_run_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"flow_run_id": {
"title": "Flow Run Id",
"type": "string"
}
},
"required": [
"flow_run_id"
],
"type": "object"
}