getBusinessItem

Get Business Items

GET https://web.zobaze.com/api/store/items/:id?token=xp5IRaIN7OI3Q1AX97wX7pW4Psqs4nhL

This endpoint allows you to get all items array.

Path Parameters

Name
Type
Description

id

string

Business ID, can get this id from POS Storefront Config.

Query Parameters

Name
Type
Description

token

string

API KEY

[
  {
    "name": "Rice",
    "id": "ZXfXlyaFcBZHGxkERTCF",
    "type": "Unit",
    "catId": "4xnpCBehHETk2c6BoBZY",
    "variants": [
      {
        "name": "2kg",
        "id": "WHUmmE5VCS4ybgV3azTS",
        "price": 250,
        "costPrice": 0,
        "stock": 5,
        "barcode": "",
        "sku": "",
        "trackStocks": true
      },
      {
        "name": "25kg",
        "id": "5iMaVanZAy0nGdRnyslZ",
        "price": 500,
        "costPrice": 0,
        "stock": 0,
        "barcode": "",
        "sku": "",
        "trackStocks": true
      }
    ]
  }
]

Click here - > DEMO

Last updated

Was this helpful?