Create Product
Create a new product
Resource URL
https://oms.sokochan.com/api/1.0/products
Request body
Name | Description | Type | Length |
---|---|---|---|
sku Required | Must be a unique value | string | 60 |
number Required | Product number | string | 20 |
name Required | Product name | string | 100 |
description | Product description | string | 250 |
width | Product width | decimal | 10,2 |
height | Product height | decimal | 10,2 |
length | Product length | decimal | 10,2 |
weight | Product weight | decimal | 10,2 |
cost | Cost price | decimal | 8,2 |
selling_price | Selling price | decimal | 8,2 |
ean | EAN number | string | 13 |
curl -X POST -H "Authorization: Basic ZnJlZDpmcmVk="\
-H "Content-Type: application/json"\ -d '{ "sku": "new_sku_0002", "number": "new0001", "name": "กล้องมือโปร", "width": "", "height": "", "length": "", "weight": "", "cost": 10030.00, "selling_price": 15990.00, "description": "", "ean":"" }' "https://oms.sokochan.com/api/1.0/products"
{ "item_code": "00600039", "sku": "new_sku_0002", "created": "2016-11-02 11:31:28" }