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