action api2cart_product_variant_price_add { label: "ProductVariantPriceAdd" description: "Add some prices to the product variant." provider: api2cart method: POST path: "/product.variant.price.add.json" encoding: json input: { type: "object" properties: { group_prices: { type: "array" description: "Defines variants's group prices" items: { type: "object" properties: { group_id: { type: "string" } price: { type: "number" } } } } id: { type: "string" description: "Defines the variant to which the price has to be added" } } } output: { type: "object" properties: { result: { type: "object" properties: { status: { type: "string" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }