LithosPOS
  1. Catalogues
LithosPOS
  • Online Ordering
    • Getting Started
    • Catalogues
      • categories
        GET
      • tables
        GET
      • items
        GET
      • items by category
        GET
    • Customers
      • customers
  1. Catalogues

items

Developing
GET
/items

Request

Authorization
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Query Params

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/items?offset=0&limit=10' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "data": [
        {
            "Id": 0,
            "Category": "string",
            "Item": "string",
            "Item1": null,
            "UOM": "string",
            "UomId": 0,
            "MRP": 0,
            "SaleRate": 0,
            "BrandId": 0,
            "TaxId": 0,
            "CessId": 0,
            "Type": 0,
            "ImageId": "string",
            "Stock": 0,
            "ModifierIds": "string",
            "Variants": [
                "string"
            ],
            "Modifiers": [
                {
                    "Id": 0,
                    "ModifierId": 0,
                    "ModifierGroup": "string",
                    "Modifier": "string",
                    "Cost": 0,
                    "Rate": 0,
                    "Checked": 0
                }
            ]
        }
    ],
    "info": {
        "count": 0,
        "limit": 0,
        "offset": 0,
        "total": 0
    }
}
Modified at 2025-08-01 10:51:48
Previous
tables
Next
items by category
Built with