Files
fn_registry/python/functions/metabase/metabase_delete_dashboard.md
T
egutierrez be5a7b582e feat: funciones Python para API Metabase
Añade módulo Python con funciones para la API de Metabase en dominio infra.
Incluye cliente HTTP, auth, y CRUD de cards, dashboards y users.
Proyecto gestionado con uv (pyproject.toml).
2026-03-28 20:32:28 +01:00

812 B

name, kind, lang, domain, version, purity, signature, description, tags, uses_functions, uses_types, returns, returns_optional, error_type, imports, 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 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
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).