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

customers

Developing
GET
customers

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 'customers?offset=0&limit=5' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "data": [
        {
            "ID": 0,
            "Name": "string",
            "Mobile": "string",
            "Email": "string",
            "LoyaltyNo": "string",
            "CountryId": 0,
            "StateId": 0,
            "State": null,
            "Address": "string",
            "EntryDate": "string",
            "Status": 0,
            "LoyaltyPoint": 0,
            "BirthDate": "string",
            "Anniversary": null
        }
    ],
    "info": {
        "count": 0,
        "limit": 0,
        "offset": 0,
        "total": 0
    }
}
Modified at 2025-08-01 11:23:25
Previous
items by category
Built with