action api2cart_product_price_add { label: "ProductPriceAdd" description: "Add some prices to the product." provider: api2cart method: POST path: "/product.price.add.json" encoding: json input: { type: "object" properties: { group_prices: { type: "array" description: "Defines product's group prices" items: { type: "object" properties: { group_id: { type: "string" } price: { type: "number" } } } } product_id: { type: "string" description: "Defines the product 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" } } } }