Skip to main content
POST
/
customers
Customer List
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]"
    }
  ]
}

Authorizations

Authorization
string
header
required

Body

application/json
sort
enum<string>
Available options:
asc,
desc
page
integer
perPage
integer

Response

Successful Response