Salonify Docs

Customers

Access your customer database and booking history.

Required scope: customers:read or customers:write

GET/businesses/{businessId}/customers

List all customers with booking statistics.

Query Parameters

NameTypeRequiredDescription
pagenumberNoPage number (default: 1)
limitnumberNoItems per page (default: 20)
searchstringNoSearch by name or email
Response
{
  "data": {
    "customers": [
      {
        "id": "customer-uuid",
        "firstName": "Anna",
        "lastName": "Mueller",
        "email": "[email protected]",
        "phone": "+49123456789",
        "totalBookings": 12,
        "totalSpent": 450.00,
        "lastVisit": "2026-03-10T14:00:00Z"
      }
    ],
    "total": 89,
    "page": 1
  }
}
GET/businesses/{businessId}/customers/{customerId}

Get detailed customer information including booking history.