Get Products
GET
https://api.zortout.com/api.aspx
Get list of products.
Query Parameters
Get Product Detail
GET
https://api.zortout.com/api.aspx
Get product detail.
Query Parameters
Get Bundles
GET
https://api.zortout.com/api.aspx
Get list of bundle products.
Query Parameters
Get Bundle Detail
GET
https://api.zortout.com/api.aspx
Get list of products in bundle.
Query Parameters
Get Variations
GET
https://api.zortout.com/api.aspx
Get list of variation products.
Query Parameters
Add Product
POST
https://api.zortout.com/api.aspx
Add product.
Query Parameters
Request Body
{
"sku": "P0001",
"name": "Product1",
"sellprice": "20.00",
"purchaseprice": "10.00",
"unittext": "Piece",
"weight": "500",
"barcode": "1234",
"category": "test category"
}
Update Product
POST
https://api.zortout.com/api.aspx
Edit product info.
Query Parameters
Request Body
Update Product Image
POST
https://api.zortout.com/api.aspx
Edit product image.
Query Parameters
Request Body
Update Product Stock List
POST
https://api.zortout.com/api.aspx
Adjust current inventory of product.
Query Parameters
Request Body
{
"stocks": [
{
"sku": "P0001",
"stock": 10,
"cost": 100
}
]
}
Increase Product Stock List
POST
https://api.zortout.com/api.aspx
Increase inventory of product.
Query Parameters
Request Body
{
"stocks": [
{
"sku": "P0001",
"stock": 10,
"cost": 100
}
]
}
Decrease Product Stock List
POST
https://api.zortout.com/api.aspx
Decrease inventory of product.
Query Parameters
Request Body
{
"stocks": [
{
"sku": "P0001",
"stock": 10,
"cost": 100
}
]
}
Update Product Available Stock List
POST
https://api.zortout.com/api.aspx
Adjust available/sellable inventory of product.
Query Parameters
Request Body
{
"stocks": [
{
"sku": "P0001",
"stock": 10,
"cost": 100
}
]
}
Delete Product
POST
https://api.zortout.com/api.aspx
Delete product.
Query Parameters
Request Body
Add Bundle
POST
https://api.zortout.com/api.aspx
Add bundle.
Query Parameters
Request Body
{
"sku": "SET0001",
"name": "Bundle 001",
"sellprice": 100,
"list":
[
{
"sku": "P0001",
"quantity": 2
},
{
"id": 1234,
"quantity": 3
}
]
}