action apacta_get_expense_files_expense_file_id { label: "Show file" provider: apacta method: GET path: "/expense_files/{expense_file_id}" encoding: json input: { type: "object" properties: { expense_file_id: { type: "string" } } required: ["expense_file_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "string" } } success: { type: "boolean" } } } }