action lyft_get_ride_receipt { label: "Get the receipt of the rides." description: "Get the receipt information of a processed ride by providing the ride id. Receipts will only be available to view once the payment has been processed. In the case of canceled ride, cancellation penalty is included if applicable.\n" provider: lyft method: GET path: "/rides/{id}/receipt" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }