action api2cart_product_manufacturer_add { label: "ProductManufacturerAdd" description: "Add manufacturer to store and assign to product" provider: api2cart method: POST path: "/product.manufacturer.add.json" encoding: json input: { type: "object" properties: { manufacturer: { type: "string" } product_id: { type: "string" } } required: ["manufacturer", "product_id"] additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { manufacturer_id: { type: "string" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }