Download skillThe skill is a reference md and part of wix-manage skill. You can use the following command to add the full wix-manage skill to your project:
Below are the recommended steps to successfully configure booking, cancellation, and waitlist policies for Wix Bookings services. This recipe covers policy inheritance, service-specific overrides, and common policy configurations for different business models.
Wix Bookings policy configuration allows businesses to set rules for:
- Booking policies: When customers can book, how far in advance, booking deadlines
- Cancellation policies: Cancellation deadlines, refund rules, fees
- Waitlist policies: When waitlists are enabled, capacity handling
- Group booking policies: Maximum participants per booking
Policies can be configured at two levels:
- Site-wide (business) policies: Default rules that apply to all services
- Service-specific policies: Override rules for individual services
- Services inherit from site-wide booking policies by default
- Service policies only override fields you explicitly specify - unspecified fields keep site defaults
- Policy options available may vary based on service type (APPOINTMENT, CLASS, COURSE)
- All policy configurations support the same core features across service types
Set default policies that will apply to all services unless overridden. Use the Business Policy API to configure booking deadlines, cancellation rules, waitlist settings, and group booking limits.
When creating or updating a service, specify policy fields that should differ from business defaults. Only include the policy fields you want to override - unspecified fields will inherit from business defaults.
Courses may have additional policy options such as bookUntilXMinutesAfterStart which allows customers to join courses even after they've started.
Query the service to confirm policies are applied correctly. The service should show explicitly set policy fields with your specified values and unspecified fields inheriting from business defaults.
- Policy inheritance: Only specify fields you want to override - leave others undefined to inherit business defaults
- Partial updates: When updating service policies, only include fields you want to change
- Capacity requirements: Waitlist policies require service capacity settings to be configured
- Group booking considerations:
maxParticipantsPerBooking works with all service types
- Time calculations: Policy deadlines are calculated from booking start time in business timezone
- Course flexibility: Course services support additional policy options like
bookUntilXMinutesAfterStart
Policies not applying:
- Verify you're setting policies on the service object, not as separate policy entities
- Check that policy fields are properly nested under
service.policy
- Ensure you're updating the correct service ID
Waitlist not working:
- Confirm service has
maxParticipants capacity set
- Verify
waitingListPolicy.enabled is true
- Check that
waitingListPolicy.capacity is set if you want limited waitlist size
Cancellation policies not enforced:
- Ensure
cancelRescheduleUpToInMinutes is set to appropriate value
- Verify
cancelationAllowed is true if cancellations should be permitted
- Check that payment and booking flow supports the configured policy
Group booking limits not working:
- Confirm
maxParticipantsPerBooking is set to desired limit
- Verify service type supports group bookings (all types do)
- Check that booking UI respects the participant limit
- Booking Policies API
- Bulk Create Services —
POST https://www.wixapis.com/bookings/v2/bulk/services/create
- Update Service —
PATCH https://www.wixapis.com/bookings/v2/services/<SERVICE_ID>
- Query Services —
POST https://www.wixapis.com/bookings/v2/services/query