Customers
Access your customer database and booking history.
Required scope: customers:read or customers:write
GET
/businesses/{businessId}/customersList all customers with booking statistics.
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
page | number | No | Page number (default: 1) |
limit | number | No | Items per page (default: 20) |
search | string | No | Search 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.