Search customer info

search customer info

POST {{base-url}}/clients/customerSearch

Headers

Name
Type
Description

Content-Type

string

x-api-access

string

x-api-secret

string

x-client-token

string

Request:- 

{
    "client_id": 306,
    "mobile_number": "9892228599",
    "full_name":"yash thakur"
 }
 
 Response:-
 
 {
    "success": true,
    "msg": "customer info found successfully",
    "data": [
        {
            "customer_id": "551",
            "name": "Yash Thakur",
            "mobile_number": "9892228599",
            "count_of_bills": "29",
            "total_of_bills": "106031.00"
        }
    ]
}

Last updated