action formapi_move_folder_to_folder { label: "Move a folder" provider: formapi method: POST path: "/folders/{folder_id}/move" encoding: json input: { type: "object" properties: { folder_id: { type: "string" } parent_folder_id: { type: "string" } } required: ["folder_id"] additionalProperties: false } output: { type: "object" properties: { id: { type: "string" } name: { type: "string" } parent_folder_id: { type: "string" } path: { type: "string" } } } }