action smart_me_actions_post { label: "Set an action for the specified device." description: "Set an action for the specified device." provider: smart_me method: POST path: "/api/Actions" encoding: form input: { type: "object" description: "Container Class for an action to post" properties: { Actions: { type: "array" description: "List with all Actions for this device" items: { type: "object" description: "Container class for an action item" properties: { ObisCode: { type: "string" description: "The ObisCode (ID) of the Action" } Value: { type: "number" format: "double" description: "The Value to Post" } } } } DeviceID: { type: "string" description: "The ID of the Device" } } } output: { type: "object" additionalProperties: true } }