action api2cart_product_option_value_assign { label: "ProductOptionValueAssign" description: "Assign product option item from product." provider: api2cart method: POST path: "/product.option.value.assign.json" encoding: json input: { type: "object" properties: { clear_cache: { type: "boolean" } option_value_id: { type: "integer" } product_option_id: { type: "integer" } } required: ["option_value_id", "product_option_id"] additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { product_option_value_id: { type: "string" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }