action smart_me_devices_put { label: "Updates the On/Off Switch on a device. \n For new implementations please use the \"actions\" command" description: "Updates the On/Off Switch on a device \n For new implementations please use the \"actions\" command" provider: smart_me method: PUT path: "/api/Devices/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } switchNumber: { type: "integer" format: "int32" } switchState: { type: "boolean" } } required: ["id", "switchState"] additionalProperties: false } output: { type: "object" properties: {} } }