action viator_booking_availability_tourgrades_pricingmatrix { label: "/booking/availability/tourgrades/pricingmatrix" description: "Get a pricing matrix that includes availability and tour-grades for a product\n\nGiven a month, this service returns days with available tour grades only (i.e., days which have at least one tourgrade available), and the pricing matrix for that tour grade for that day.\n\n- **Note**: Availability data is limited to a period of **12 months** into the future from the present time on the production server and **6 months** on the sandbox server. \n" provider: viator method: POST path: "/booking/availability/tourgrades/pricingmatrix" encoding: json input: { type: "object" properties: { currencyCode: { type: "string" description: "**currency code** for the currency in which to display pricing details" } month: { type: "string" description: "**month of year** (as text) by which to filter results (must be in the future)" } productCode: { type: "string" description: "**alphanumeric identifier** of product about which to retrieve tour grade and pricing information" } year: { type: "string" description: "**year** (as text) by which to filter results (must be in the future)" } } } output: { type: "object" } }