action viator_booking_mybookings { label: "/booking/mybookings" description: "Get a user's bookings with travel dates in the future. \n\nThis service can also be used to check the status of a booking. \n\n**Provide either:** \n- A `voucherKey`, **or...** \n- An email address (`email`) and a booking reference (`itineraryOrItemId`) ([Booking Reference](#section/Key-concepts/Booking-references))\n" provider: viator method: GET path: "/booking/mybookings" encoding: json input: { type: "object" properties: { email: { type: "string" } itineraryOrItemId: { type: "string" } voucherKey: { type: "string" } } additionalProperties: false } output: { type: "object" } }