CreateProduct
Info for adding a product to an order.
Fields
Field | Description |
---|---|
productid int (required) | The id for the product you want to add. Example value:1 |
properties map<string, string> | The property values for the product. Example value:{ "colour": "green", "size": "M" } |
Example
1{
2 "productid": 1,
3 "properties": {
4 "colour": "green",
5 "size": "M"
6 }
7}