action api2cart_product_option_assign { label: "ProductOptionAssign" description: "Assign option from product." provider: api2cart method: POST path: "/product.option.assign.json" encoding: json input: { type: "object" properties: { clear_cache: { type: "boolean" } option_id: { type: "string" } option_values: { type: "string" } product_id: { type: "string" } required: { type: "boolean" } sort_order: { type: "integer" } } required: ["option_id", "product_id"] additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { product_option_id: { type: "string" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }