# Get info 
get /api/system/info

# Get system config
get /api/system/config

# Set system config setting (updates only those included)
put /api/system/config '{"config": {"network": {"eth0": {"Method": "dhcp"}}}}'

# Can set some user data - "user_config" Can have any valid json object
put /api/system/config '{"config": {"user_config": {"location": "Bristol"}}}'
get /api/system/config

# Change system password
put /api/system/user '{"user": {"username": "admin", "password": "admin"}}'

# May need a restart to apply setting
put /api/system/restart
