cURL
curl --request POST \ --url https://dev-api.auxvault.net/api/v1/public/customers \ --header 'Authorization: <api-key>' \ --header 'Content-Type: application/json' \ --data ' { "search": "<string>", "sort": "asc", "page": 123, "perPage": 123 } '
{ "status_code": 200, "message": "Customers found successfully", "data": [ { "CustomerId": "cust_123", "CustomerName": "John Doe", "Email": "[email protected]" } ] }
Retrieve a list of customers.
asc
desc
Successful Response