delete_flight
Preview
This feature is in preview and is subject to change.
Permanently delete a Flight, including all versions, schedule, and run history. This action cannot be undone.
The SQL equivalent is MD_DELETE_FLIGHT.
Input parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string (UUID) | Yes | The Flight UUID. |
Output schema
{
"success": boolean,
"error": string
}
Example usage
{ "id": "80000000-0000-0000-0000-000000000001" }
After deletion, calls to other *_flight* tools with the same id return does not exist.
Related
list_flights— Verify the Flight is gone.MD_DELETE_FLIGHT— SQL equivalent.