action viator_search_products_codes { label: "/search/products/codes" description: "Search by product code\n- This service returns an array of products given an array of product identifiers that is useful for wishlist / shopping cart / user account display \n- **Note**: requesting an inactive or non-existent product code will return `0`, `null` and blank values (as per the 'invalid_product' example).\n" provider: viator method: POST path: "/search/products/codes" encoding: json input: { type: "object" properties: { currencyCode: { type: "string" description: "**currency code** for the currency in which to display product pricing" } productCodes: { type: "array" description: "**array** of product codes to search for" items: { type: "string" } } } } output: { type: "object" } }