We’re excited to announce that the latest information is now available on our new site, the Ginesys One Wiki!. Visit the site for up-to-date resources and insights. We look forward to continuing to support you there!
We’re excited to announce that the latest information is now available on our new site, the Ginesys One Wiki!. Visit the site for up-to-date resources and insights. We look forward to continuing to support you there!
POST SKUs
This call will create new SKUs within Browntape.
End Point
https://app.browntape.com/0.1/skus/add.json
Parameters
?username=XXXXXXXXXX
&auth_string=YYYYYYYYY
Post Parameter
{
data: [
{
"custom_code": "XYZ",
"readable_name": "iPhone 4s White 64GB",
"product_family": "iPhone 4s",
"opening_stock": 1000,
"low_stock_warning_at": 5,
"default_cost": 25000,
"least_selling_price": 26999,
"currency": "INR",
"length_mm": 10,
"breadth_mm": 10,
"height_mm": 10,
"weight_gm": 800,
"image_url": "https://dl.dropboxusercontent.com/u/56339967/Images%20/ONBTBTMOOM0004.jpg",
"hsn_code": 1234,
"brand": "USPA"
}
]
}
Notes
Custom code & readable name default_cost,currency are required fields. More so, they should be unique within the account (if you have a product with custom_code as 'XYZ', you cannot add another one with the same code.
Product family is a grouping of the product. For example, “iPhone 4s” could be a product family and “iPhone 4s White 64GB” could be an SKU under the family.
Opening stock is the inventory that will be assigned to the SKU once it is created. You can set this as 0.
Low stock warning is the inventory level under which the system will start sending inventory alerts.
Default cost is the usual cost price at which the product is purchased. Is useful during profit calculation
Least selling price is used to show warnings if the product is sold on any marketplace below the LSP.
Currency should be set to the three letter abbreviation like INR or USD.
Length, breadth, height and weight could be useful for courier pricing if mentioned.
Image URL is a location from where Browntape can pick up an image of the product.
Response
{
success: true,
message: "34 products added"
}