action lufthansa_orders { label: "Orders" description: "Retrieve order by ID and optionally name. This service is only accessible for LH privileged partners" provider: lufthansa method: GET path: "/orders/orders/{orderID}/{name}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } name: { type: "string" } orderID: { type: "string" } } required: ["Accept", "name", "orderID"] additionalProperties: false } output: { type: "string" } }