Files
fn_registry/python/functions/metabase/metabase_delete_dashboard.md
egutierrez 5f4f1f7508 docs: params/output semántico en 506 funciones para composabilidad
Añade campos params y output al frontmatter YAML de las 506 funciones del registry.
Cada parámetro tiene descripción semántica (qué representa, unidades, rango típico)
y cada función describe qué produce su output. Permite a agentes razonar sobre
cadenas de composición (ej: prices → log_return → sharpe_ratio) sin leer código.
2026-04-05 18:45:16 +02:00

983 B

name, kind, lang, domain, version, purity, signature, description, tags, uses_functions, uses_types, returns, returns_optional, error_type, imports, params, output, tested, tests, test_file_path, file_path
name kind lang domain version purity signature description tags uses_functions uses_types returns returns_optional error_type imports params output tested tests test_file_path file_path
metabase_delete_dashboard function py infra 1.0.0 impure def metabase_delete_dashboard(client: MetabaseClient, dashboard_id: int) -> None Elimina permanentemente un dashboard. IRREVERSIBLE. Preferir archived=True. Endpoint: DELETE /api/dashboard/:id.
metabase
dashboard
delete
api
python
false error_go_core
httpx
name desc
client instancia autenticada de MetabaseClient
name desc
dashboard_id ID del dashboard a eliminar permanentemente
None false
python/functions/metabase/dashboards.py

Ejemplo

metabase_delete_dashboard(client, 1)
# Preferir: metabase_update_dashboard(client, 1, archived=True)

Notas

IRREVERSIBLE. Preferir soft-delete con metabase_update_dashboard(archived=True).