action lufthansa_all_fares { label: "All Fares" description: "Retrieves all available fares for a specific Origin & Destination pair on a given date. Available fares are: One-way and Return for 4U. Return only for OS" provider: lufthansa method: GET path: "/offers/fares/allfares" encoding: json input: { type: "object" properties: { Accept: { type: "string" } "cabin-class": { type: "string" } catalogues: { type: "string" } destination: { type: "string" } "fare-family": { type: "string" } origin: { type: "string" } "return-date": { type: "string" } trackingid: { type: "string" } "travel-date": { type: "string" } travelers: { type: "string" } } required: ["catalogues", "destination", "origin", "travel-date"] additionalProperties: false } output: { type: "string" } }