v1

latestOpenAPI 3.0.12026-07-263591116.9 KB
Product V2

Get list of items

get/v2/product/list

Query parameters

num_recordsinteger

Number of records to fetch, default : all items will be sent in response

pageinteger

Page number

Response

Item List fetched successfully

successboolean

Success flag

messagestring

Response message

error_codestring

Error Code

errorsobject

Errors

Example response

{
  "success": true,
  "data": {
    "items": [
      {
        "id": "ITEM123",
        "name": "Item Name",
        "quantity": 1,
        "unit_price": 100,
        "tax_rate": 18,
        "price_with_tax": 118,
        "discount_percent": 10,
        "description": "Item Description",
        "hsn_code": "1234",
        "item_type": "Product",
        "unit": "kg",
        "category": "Electronics",
        "swipe_id": "1"
      }
    ],
    "total_records": 10
  }
}