Update configuration
curl --request PUT \
--url https://api.orbital-systems.com/client/showers/{id}/configuration \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"boost_flow_enabled": true,
"cleaning_program_liters_limit": 123,
"cleaning_program_session_limit": 123,
"cleaning_program_sessions_limit_enabled": true,
"color_mode": 0.5,
"daily_hot_water_treatment_enabled": true,
"daily_hot_water_treatment_time": "<string>",
"default_recirculation_mode": 2,
"default_shower_flow": 8,
"heater_power_available": 123,
"hot_water_treatment_per_session_enabled": true,
"is_private_shower": true,
"is_wall_clock_12_hour_format": true,
"is_wall_clock_enabled": true,
"live_data_rate": 123,
"max_shower_water_flow": 8,
"min_conservation_flow": 123,
"min_shower_water_flow": 8,
"shower_head_hc_enabled": true,
"shower_water_temperature_fahrenheit": true,
"shower_water_temperature_max": 25,
"shower_water_temperature_min": 25,
"shower_water_temperature_start": 25,
"state_active_showering_timer": 123,
"state_standby_no_user_wait_timer": 123,
"state_standby_wait_timer": 123,
"time_zone_name": "<string>",
"time_zone": "<string>",
"use_estimation_for_drain_temperature": true,
"water_conservation": true,
"welcome_message_enabled": true,
"welcome_message": "<string>",
"water_hardness": 15.5
}
'import requests
url = "https://api.orbital-systems.com/client/showers/{id}/configuration"
payload = {
"boost_flow_enabled": True,
"cleaning_program_liters_limit": 123,
"cleaning_program_session_limit": 123,
"cleaning_program_sessions_limit_enabled": True,
"color_mode": 0.5,
"daily_hot_water_treatment_enabled": True,
"daily_hot_water_treatment_time": "<string>",
"default_recirculation_mode": 2,
"default_shower_flow": 8,
"heater_power_available": 123,
"hot_water_treatment_per_session_enabled": True,
"is_private_shower": True,
"is_wall_clock_12_hour_format": True,
"is_wall_clock_enabled": True,
"live_data_rate": 123,
"max_shower_water_flow": 8,
"min_conservation_flow": 123,
"min_shower_water_flow": 8,
"shower_head_hc_enabled": True,
"shower_water_temperature_fahrenheit": True,
"shower_water_temperature_max": 25,
"shower_water_temperature_min": 25,
"shower_water_temperature_start": 25,
"state_active_showering_timer": 123,
"state_standby_no_user_wait_timer": 123,
"state_standby_wait_timer": 123,
"time_zone_name": "<string>",
"time_zone": "<string>",
"use_estimation_for_drain_temperature": True,
"water_conservation": True,
"welcome_message_enabled": True,
"welcome_message": "<string>",
"water_hardness": 15.5
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
boost_flow_enabled: true,
cleaning_program_liters_limit: 123,
cleaning_program_session_limit: 123,
cleaning_program_sessions_limit_enabled: true,
color_mode: 0.5,
daily_hot_water_treatment_enabled: true,
daily_hot_water_treatment_time: '<string>',
default_recirculation_mode: 2,
default_shower_flow: 8,
heater_power_available: 123,
hot_water_treatment_per_session_enabled: true,
is_private_shower: true,
is_wall_clock_12_hour_format: true,
is_wall_clock_enabled: true,
live_data_rate: 123,
max_shower_water_flow: 8,
min_conservation_flow: 123,
min_shower_water_flow: 8,
shower_head_hc_enabled: true,
shower_water_temperature_fahrenheit: true,
shower_water_temperature_max: 25,
shower_water_temperature_min: 25,
shower_water_temperature_start: 25,
state_active_showering_timer: 123,
state_standby_no_user_wait_timer: 123,
state_standby_wait_timer: 123,
time_zone_name: '<string>',
time_zone: '<string>',
use_estimation_for_drain_temperature: true,
water_conservation: true,
welcome_message_enabled: true,
welcome_message: '<string>',
water_hardness: 15.5
})
};
fetch('https://api.orbital-systems.com/client/showers/{id}/configuration', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.orbital-systems.com/client/showers/{id}/configuration",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'boost_flow_enabled' => true,
'cleaning_program_liters_limit' => 123,
'cleaning_program_session_limit' => 123,
'cleaning_program_sessions_limit_enabled' => true,
'color_mode' => 0.5,
'daily_hot_water_treatment_enabled' => true,
'daily_hot_water_treatment_time' => '<string>',
'default_recirculation_mode' => 2,
'default_shower_flow' => 8,
'heater_power_available' => 123,
'hot_water_treatment_per_session_enabled' => true,
'is_private_shower' => true,
'is_wall_clock_12_hour_format' => true,
'is_wall_clock_enabled' => true,
'live_data_rate' => 123,
'max_shower_water_flow' => 8,
'min_conservation_flow' => 123,
'min_shower_water_flow' => 8,
'shower_head_hc_enabled' => true,
'shower_water_temperature_fahrenheit' => true,
'shower_water_temperature_max' => 25,
'shower_water_temperature_min' => 25,
'shower_water_temperature_start' => 25,
'state_active_showering_timer' => 123,
'state_standby_no_user_wait_timer' => 123,
'state_standby_wait_timer' => 123,
'time_zone_name' => '<string>',
'time_zone' => '<string>',
'use_estimation_for_drain_temperature' => true,
'water_conservation' => true,
'welcome_message_enabled' => true,
'welcome_message' => '<string>',
'water_hardness' => 15.5
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.orbital-systems.com/client/showers/{id}/configuration"
payload := strings.NewReader("{\n \"boost_flow_enabled\": true,\n \"cleaning_program_liters_limit\": 123,\n \"cleaning_program_session_limit\": 123,\n \"cleaning_program_sessions_limit_enabled\": true,\n \"color_mode\": 0.5,\n \"daily_hot_water_treatment_enabled\": true,\n \"daily_hot_water_treatment_time\": \"<string>\",\n \"default_recirculation_mode\": 2,\n \"default_shower_flow\": 8,\n \"heater_power_available\": 123,\n \"hot_water_treatment_per_session_enabled\": true,\n \"is_private_shower\": true,\n \"is_wall_clock_12_hour_format\": true,\n \"is_wall_clock_enabled\": true,\n \"live_data_rate\": 123,\n \"max_shower_water_flow\": 8,\n \"min_conservation_flow\": 123,\n \"min_shower_water_flow\": 8,\n \"shower_head_hc_enabled\": true,\n \"shower_water_temperature_fahrenheit\": true,\n \"shower_water_temperature_max\": 25,\n \"shower_water_temperature_min\": 25,\n \"shower_water_temperature_start\": 25,\n \"state_active_showering_timer\": 123,\n \"state_standby_no_user_wait_timer\": 123,\n \"state_standby_wait_timer\": 123,\n \"time_zone_name\": \"<string>\",\n \"time_zone\": \"<string>\",\n \"use_estimation_for_drain_temperature\": true,\n \"water_conservation\": true,\n \"welcome_message_enabled\": true,\n \"welcome_message\": \"<string>\",\n \"water_hardness\": 15.5\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.orbital-systems.com/client/showers/{id}/configuration")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"boost_flow_enabled\": true,\n \"cleaning_program_liters_limit\": 123,\n \"cleaning_program_session_limit\": 123,\n \"cleaning_program_sessions_limit_enabled\": true,\n \"color_mode\": 0.5,\n \"daily_hot_water_treatment_enabled\": true,\n \"daily_hot_water_treatment_time\": \"<string>\",\n \"default_recirculation_mode\": 2,\n \"default_shower_flow\": 8,\n \"heater_power_available\": 123,\n \"hot_water_treatment_per_session_enabled\": true,\n \"is_private_shower\": true,\n \"is_wall_clock_12_hour_format\": true,\n \"is_wall_clock_enabled\": true,\n \"live_data_rate\": 123,\n \"max_shower_water_flow\": 8,\n \"min_conservation_flow\": 123,\n \"min_shower_water_flow\": 8,\n \"shower_head_hc_enabled\": true,\n \"shower_water_temperature_fahrenheit\": true,\n \"shower_water_temperature_max\": 25,\n \"shower_water_temperature_min\": 25,\n \"shower_water_temperature_start\": 25,\n \"state_active_showering_timer\": 123,\n \"state_standby_no_user_wait_timer\": 123,\n \"state_standby_wait_timer\": 123,\n \"time_zone_name\": \"<string>\",\n \"time_zone\": \"<string>\",\n \"use_estimation_for_drain_temperature\": true,\n \"water_conservation\": true,\n \"welcome_message_enabled\": true,\n \"welcome_message\": \"<string>\",\n \"water_hardness\": 15.5\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbital-systems.com/client/showers/{id}/configuration")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"boost_flow_enabled\": true,\n \"cleaning_program_liters_limit\": 123,\n \"cleaning_program_session_limit\": 123,\n \"cleaning_program_sessions_limit_enabled\": true,\n \"color_mode\": 0.5,\n \"daily_hot_water_treatment_enabled\": true,\n \"daily_hot_water_treatment_time\": \"<string>\",\n \"default_recirculation_mode\": 2,\n \"default_shower_flow\": 8,\n \"heater_power_available\": 123,\n \"hot_water_treatment_per_session_enabled\": true,\n \"is_private_shower\": true,\n \"is_wall_clock_12_hour_format\": true,\n \"is_wall_clock_enabled\": true,\n \"live_data_rate\": 123,\n \"max_shower_water_flow\": 8,\n \"min_conservation_flow\": 123,\n \"min_shower_water_flow\": 8,\n \"shower_head_hc_enabled\": true,\n \"shower_water_temperature_fahrenheit\": true,\n \"shower_water_temperature_max\": 25,\n \"shower_water_temperature_min\": 25,\n \"shower_water_temperature_start\": 25,\n \"state_active_showering_timer\": 123,\n \"state_standby_no_user_wait_timer\": 123,\n \"state_standby_wait_timer\": 123,\n \"time_zone_name\": \"<string>\",\n \"time_zone\": \"<string>\",\n \"use_estimation_for_drain_temperature\": true,\n \"water_conservation\": true,\n \"welcome_message_enabled\": true,\n \"welcome_message\": \"<string>\",\n \"water_hardness\": 15.5\n}"
response = http.request(request)
puts response.read_body{
"boost_flow_enabled": true,
"cleaning_program_liters_limit": 123,
"cleaning_program_session_limit": 123,
"cleaning_program_sessions_limit_enabled": true,
"color_mode": 123,
"daily_hot_water_treatment_enabled": true,
"daily_hot_water_treatment_time": "<string>",
"default_recirculation_mode": 123,
"default_shower_flow": 123,
"heater_power_available": 123,
"hot_water_treatment_per_session_enabled": true,
"is_private_shower": true,
"is_wall_clock_12_hour_format": true,
"is_wall_clock_enabled": true,
"live_data_rate": 123,
"max_shower_water_flow": 123,
"min_conservation_flow": 123,
"min_shower_water_flow": 123,
"shower_head_hc_enabled": true,
"shower_water_temperature_fahrenheit": true,
"shower_water_temperature_max": 123,
"shower_water_temperature_min": 123,
"shower_water_temperature_start": 123,
"state_active_showering_timer": 123,
"state_standby_no_user_wait_timer": 123,
"state_standby_wait_timer": 123,
"time_zone_name": "<string>",
"time_zone": "<string>",
"use_estimation_for_drain_temperature": true,
"water_conservation": true,
"welcome_message_enabled": true,
"welcome_message": "<string>",
"water_hardness": 15.5
}{}{}{}Shower configuration.
Update configuration
PUT
/
client
/
showers
/
{id}
/
configuration
Update configuration
curl --request PUT \
--url https://api.orbital-systems.com/client/showers/{id}/configuration \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"boost_flow_enabled": true,
"cleaning_program_liters_limit": 123,
"cleaning_program_session_limit": 123,
"cleaning_program_sessions_limit_enabled": true,
"color_mode": 0.5,
"daily_hot_water_treatment_enabled": true,
"daily_hot_water_treatment_time": "<string>",
"default_recirculation_mode": 2,
"default_shower_flow": 8,
"heater_power_available": 123,
"hot_water_treatment_per_session_enabled": true,
"is_private_shower": true,
"is_wall_clock_12_hour_format": true,
"is_wall_clock_enabled": true,
"live_data_rate": 123,
"max_shower_water_flow": 8,
"min_conservation_flow": 123,
"min_shower_water_flow": 8,
"shower_head_hc_enabled": true,
"shower_water_temperature_fahrenheit": true,
"shower_water_temperature_max": 25,
"shower_water_temperature_min": 25,
"shower_water_temperature_start": 25,
"state_active_showering_timer": 123,
"state_standby_no_user_wait_timer": 123,
"state_standby_wait_timer": 123,
"time_zone_name": "<string>",
"time_zone": "<string>",
"use_estimation_for_drain_temperature": true,
"water_conservation": true,
"welcome_message_enabled": true,
"welcome_message": "<string>",
"water_hardness": 15.5
}
'import requests
url = "https://api.orbital-systems.com/client/showers/{id}/configuration"
payload = {
"boost_flow_enabled": True,
"cleaning_program_liters_limit": 123,
"cleaning_program_session_limit": 123,
"cleaning_program_sessions_limit_enabled": True,
"color_mode": 0.5,
"daily_hot_water_treatment_enabled": True,
"daily_hot_water_treatment_time": "<string>",
"default_recirculation_mode": 2,
"default_shower_flow": 8,
"heater_power_available": 123,
"hot_water_treatment_per_session_enabled": True,
"is_private_shower": True,
"is_wall_clock_12_hour_format": True,
"is_wall_clock_enabled": True,
"live_data_rate": 123,
"max_shower_water_flow": 8,
"min_conservation_flow": 123,
"min_shower_water_flow": 8,
"shower_head_hc_enabled": True,
"shower_water_temperature_fahrenheit": True,
"shower_water_temperature_max": 25,
"shower_water_temperature_min": 25,
"shower_water_temperature_start": 25,
"state_active_showering_timer": 123,
"state_standby_no_user_wait_timer": 123,
"state_standby_wait_timer": 123,
"time_zone_name": "<string>",
"time_zone": "<string>",
"use_estimation_for_drain_temperature": True,
"water_conservation": True,
"welcome_message_enabled": True,
"welcome_message": "<string>",
"water_hardness": 15.5
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
boost_flow_enabled: true,
cleaning_program_liters_limit: 123,
cleaning_program_session_limit: 123,
cleaning_program_sessions_limit_enabled: true,
color_mode: 0.5,
daily_hot_water_treatment_enabled: true,
daily_hot_water_treatment_time: '<string>',
default_recirculation_mode: 2,
default_shower_flow: 8,
heater_power_available: 123,
hot_water_treatment_per_session_enabled: true,
is_private_shower: true,
is_wall_clock_12_hour_format: true,
is_wall_clock_enabled: true,
live_data_rate: 123,
max_shower_water_flow: 8,
min_conservation_flow: 123,
min_shower_water_flow: 8,
shower_head_hc_enabled: true,
shower_water_temperature_fahrenheit: true,
shower_water_temperature_max: 25,
shower_water_temperature_min: 25,
shower_water_temperature_start: 25,
state_active_showering_timer: 123,
state_standby_no_user_wait_timer: 123,
state_standby_wait_timer: 123,
time_zone_name: '<string>',
time_zone: '<string>',
use_estimation_for_drain_temperature: true,
water_conservation: true,
welcome_message_enabled: true,
welcome_message: '<string>',
water_hardness: 15.5
})
};
fetch('https://api.orbital-systems.com/client/showers/{id}/configuration', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.orbital-systems.com/client/showers/{id}/configuration",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'boost_flow_enabled' => true,
'cleaning_program_liters_limit' => 123,
'cleaning_program_session_limit' => 123,
'cleaning_program_sessions_limit_enabled' => true,
'color_mode' => 0.5,
'daily_hot_water_treatment_enabled' => true,
'daily_hot_water_treatment_time' => '<string>',
'default_recirculation_mode' => 2,
'default_shower_flow' => 8,
'heater_power_available' => 123,
'hot_water_treatment_per_session_enabled' => true,
'is_private_shower' => true,
'is_wall_clock_12_hour_format' => true,
'is_wall_clock_enabled' => true,
'live_data_rate' => 123,
'max_shower_water_flow' => 8,
'min_conservation_flow' => 123,
'min_shower_water_flow' => 8,
'shower_head_hc_enabled' => true,
'shower_water_temperature_fahrenheit' => true,
'shower_water_temperature_max' => 25,
'shower_water_temperature_min' => 25,
'shower_water_temperature_start' => 25,
'state_active_showering_timer' => 123,
'state_standby_no_user_wait_timer' => 123,
'state_standby_wait_timer' => 123,
'time_zone_name' => '<string>',
'time_zone' => '<string>',
'use_estimation_for_drain_temperature' => true,
'water_conservation' => true,
'welcome_message_enabled' => true,
'welcome_message' => '<string>',
'water_hardness' => 15.5
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.orbital-systems.com/client/showers/{id}/configuration"
payload := strings.NewReader("{\n \"boost_flow_enabled\": true,\n \"cleaning_program_liters_limit\": 123,\n \"cleaning_program_session_limit\": 123,\n \"cleaning_program_sessions_limit_enabled\": true,\n \"color_mode\": 0.5,\n \"daily_hot_water_treatment_enabled\": true,\n \"daily_hot_water_treatment_time\": \"<string>\",\n \"default_recirculation_mode\": 2,\n \"default_shower_flow\": 8,\n \"heater_power_available\": 123,\n \"hot_water_treatment_per_session_enabled\": true,\n \"is_private_shower\": true,\n \"is_wall_clock_12_hour_format\": true,\n \"is_wall_clock_enabled\": true,\n \"live_data_rate\": 123,\n \"max_shower_water_flow\": 8,\n \"min_conservation_flow\": 123,\n \"min_shower_water_flow\": 8,\n \"shower_head_hc_enabled\": true,\n \"shower_water_temperature_fahrenheit\": true,\n \"shower_water_temperature_max\": 25,\n \"shower_water_temperature_min\": 25,\n \"shower_water_temperature_start\": 25,\n \"state_active_showering_timer\": 123,\n \"state_standby_no_user_wait_timer\": 123,\n \"state_standby_wait_timer\": 123,\n \"time_zone_name\": \"<string>\",\n \"time_zone\": \"<string>\",\n \"use_estimation_for_drain_temperature\": true,\n \"water_conservation\": true,\n \"welcome_message_enabled\": true,\n \"welcome_message\": \"<string>\",\n \"water_hardness\": 15.5\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://api.orbital-systems.com/client/showers/{id}/configuration")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"boost_flow_enabled\": true,\n \"cleaning_program_liters_limit\": 123,\n \"cleaning_program_session_limit\": 123,\n \"cleaning_program_sessions_limit_enabled\": true,\n \"color_mode\": 0.5,\n \"daily_hot_water_treatment_enabled\": true,\n \"daily_hot_water_treatment_time\": \"<string>\",\n \"default_recirculation_mode\": 2,\n \"default_shower_flow\": 8,\n \"heater_power_available\": 123,\n \"hot_water_treatment_per_session_enabled\": true,\n \"is_private_shower\": true,\n \"is_wall_clock_12_hour_format\": true,\n \"is_wall_clock_enabled\": true,\n \"live_data_rate\": 123,\n \"max_shower_water_flow\": 8,\n \"min_conservation_flow\": 123,\n \"min_shower_water_flow\": 8,\n \"shower_head_hc_enabled\": true,\n \"shower_water_temperature_fahrenheit\": true,\n \"shower_water_temperature_max\": 25,\n \"shower_water_temperature_min\": 25,\n \"shower_water_temperature_start\": 25,\n \"state_active_showering_timer\": 123,\n \"state_standby_no_user_wait_timer\": 123,\n \"state_standby_wait_timer\": 123,\n \"time_zone_name\": \"<string>\",\n \"time_zone\": \"<string>\",\n \"use_estimation_for_drain_temperature\": true,\n \"water_conservation\": true,\n \"welcome_message_enabled\": true,\n \"welcome_message\": \"<string>\",\n \"water_hardness\": 15.5\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbital-systems.com/client/showers/{id}/configuration")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"boost_flow_enabled\": true,\n \"cleaning_program_liters_limit\": 123,\n \"cleaning_program_session_limit\": 123,\n \"cleaning_program_sessions_limit_enabled\": true,\n \"color_mode\": 0.5,\n \"daily_hot_water_treatment_enabled\": true,\n \"daily_hot_water_treatment_time\": \"<string>\",\n \"default_recirculation_mode\": 2,\n \"default_shower_flow\": 8,\n \"heater_power_available\": 123,\n \"hot_water_treatment_per_session_enabled\": true,\n \"is_private_shower\": true,\n \"is_wall_clock_12_hour_format\": true,\n \"is_wall_clock_enabled\": true,\n \"live_data_rate\": 123,\n \"max_shower_water_flow\": 8,\n \"min_conservation_flow\": 123,\n \"min_shower_water_flow\": 8,\n \"shower_head_hc_enabled\": true,\n \"shower_water_temperature_fahrenheit\": true,\n \"shower_water_temperature_max\": 25,\n \"shower_water_temperature_min\": 25,\n \"shower_water_temperature_start\": 25,\n \"state_active_showering_timer\": 123,\n \"state_standby_no_user_wait_timer\": 123,\n \"state_standby_wait_timer\": 123,\n \"time_zone_name\": \"<string>\",\n \"time_zone\": \"<string>\",\n \"use_estimation_for_drain_temperature\": true,\n \"water_conservation\": true,\n \"welcome_message_enabled\": true,\n \"welcome_message\": \"<string>\",\n \"water_hardness\": 15.5\n}"
response = http.request(request)
puts response.read_body{
"boost_flow_enabled": true,
"cleaning_program_liters_limit": 123,
"cleaning_program_session_limit": 123,
"cleaning_program_sessions_limit_enabled": true,
"color_mode": 123,
"daily_hot_water_treatment_enabled": true,
"daily_hot_water_treatment_time": "<string>",
"default_recirculation_mode": 123,
"default_shower_flow": 123,
"heater_power_available": 123,
"hot_water_treatment_per_session_enabled": true,
"is_private_shower": true,
"is_wall_clock_12_hour_format": true,
"is_wall_clock_enabled": true,
"live_data_rate": 123,
"max_shower_water_flow": 123,
"min_conservation_flow": 123,
"min_shower_water_flow": 123,
"shower_head_hc_enabled": true,
"shower_water_temperature_fahrenheit": true,
"shower_water_temperature_max": 123,
"shower_water_temperature_min": 123,
"shower_water_temperature_start": 123,
"state_active_showering_timer": 123,
"state_standby_no_user_wait_timer": 123,
"state_standby_wait_timer": 123,
"time_zone_name": "<string>",
"time_zone": "<string>",
"use_estimation_for_drain_temperature": true,
"water_conservation": true,
"welcome_message_enabled": true,
"welcome_message": "<string>",
"water_hardness": 15.5
}{}{}{}Authorizations
Path Parameters
The unique identifier for the shower
Body
application/json
Required range:
0 <= x <= 1Required string length:
4Required range:
0 <= x <= 4Required range:
4 <= x <= 12Required range:
4 <= x <= 12Required range:
4 <= x <= 12Required range:
0 <= x <= 50Required range:
0 <= x <= 50Required range:
0 <= x <= 50Required range:
1 <= x <= 30Response
Configuration updated successfully
Required range:
1 <= x <= 30⌘I