Skip to content

Hass.IO 0.39

Choose a tag to compare

@pvizeli pvizeli released this 05 Jul 23:51
  • Add snapshot/restore functions
  • Small cleanups/bugfixs

Snapshot is at the moment in beta state. UI support is coming later. We support full snapshot/restore or partial. You can also partial restore from a full snapshot.

Full:
curl -d '{"name": "Test full snapshot"}' http://172.17.0.2/snapshots/new/full
curl -d 'http://172.17.0.2/snapshots/ID/restore/full

Partial (i.e. with homeassistant)
curl -d '{"name": "Test only hass config", "folders": ["homeassistant"]}' http://172.17.0.2/snapshots/new/partial
curl -d '{"homeassistant": true, "folders": ["homeassistant"]}' http://172.17.0.2/snapshots/ID/partial

More details in the API documentation.