action netatmo_syncschedule { label: "syncschedule" description: "The method syncschedule changes the Thermostat weekly schedule." provider: netatmo method: POST path: "/syncschedule" encoding: json input: { type: "object" properties: { device_id: { type: "string" } module_id: { type: "string" } } required: ["device_id", "module_id"] additionalProperties: false } output: { properties: { body: { type: "string" } status: { type: "string" } time_exec: { type: "number" format: "double" } time_server: { type: "integer" format: "int32" } } } }