action formapi_list_folders { label: "Get a list of all folders" provider: formapi method: GET path: "/folders/" encoding: json input: { type: "object" properties: { parent_folder_id: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { id: { type: "string" } name: { type: "string" } parent_folder_id: { type: "string" } path: { type: "string" } } } } }