v1

latestOpenAPI 3.0.12026-07-263591116.9 KB
Customer V2

Get list of customers

get/v2/customer/list

Query parameters

num_recordsinteger

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

pageinteger

Page number

Response

Customer List fetched successfully

successboolean

Success flag

messagestring

Response message

error_codestring

Error Code

errorsobject

Errors

Example response

{
  "success": true,
  "data": {
    "customers": [
      {
        "customer_id": "CUST-2",
        "name": "Customer",
        "phone": "1234567890",
        "email": "john@doe.com",
        "swipe_id": "1"
      }
    ],
    "total_records": 10
  }
}