action netatmo_setpersonsaway { label: "setpersonsaway" description: "Sets a person as 'Away' or the Home as 'Empty'. The event will be added to the user’s timeline.\n" provider: netatmo method: POST path: "/setpersonsaway" encoding: json input: { type: "object" properties: { home_id: { type: "string" } person_id: { type: "string" } } required: ["home_id"] additionalProperties: false } output: { properties: { status: { type: "string" } time_exec: { type: "number" format: "double" } time_server: { type: "integer" format: "int32" } } } }