action files_get_requests_folders_path { label: "List Requests" description: "List Requests" provider: files method: GET path: "/requests/folders/{path}" encoding: json input: { type: "object" properties: { cursor: { type: "string" } mine: { type: "boolean" } path: { type: "string" } per_page: { type: "integer" format: "int32" } sort_by: { type: "object" } } required: ["path"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "List Requests" properties: { automation_id: { type: "string" description: "ID of automation that created request" } destination: { type: "string" description: "Destination filename" } id: { type: "integer" format: "int32" description: "Request ID" } path: { type: "string" description: "Folder path" } source: { type: "string" description: "Source filename, if applicable" } user_display_name: { type: "string" description: "User making the request (if applicable)" } } } } }