action smart_me_folder_assign_post { label: "Assign a folder (source) or meter to another folder (target). Can be used to create a folder structure." provider: smart_me method: POST path: "/api/folder/assign" encoding: json input: { type: "object" properties: { source: { type: "string" } target: { type: "string" } } required: ["source", "target"] additionalProperties: false } output: { type: "object" additionalProperties: true } }