delete_flow
Remove a workflow from Prefect by specifying its unique identifier to declutter your automation environment and manage flow lifecycle.
Instructions
Delete a flow by ID.
Args: flow_id: The flow UUID
Returns: Confirmation message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
flow_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"flow_id": {
"title": "Flow Id",
"type": "string"
}
},
"required": [
"flow_id"
],
"type": "object"
}