Skip to main content
DELETE
/
energymodels
/
{energy_model_id}
Delete Energy Model
curl --request DELETE \
  --url https://api.example.com/energymodels/{energy_model_id}

DELETE /energymodels/

Remove an energy model run from the workspace. This is a permanent, irreversible operation.

Notes

  • The energy_model_id is the workspace-scoped run index (the same ID used in GET /energymodels/{energy_model_id}).
  • Returns { "deleted": true } on success.
  • Returns 404 if the energy model does not exist in the current workspace.
  • Requires a write session (workspace write access).
  • This does not cancel any in-progress tasks associated with the energy model. Cancel tasks separately via POST /tasks//cancel if needed.