> Portal Navigation:
> 
> - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version.
> - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages).
> - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`).
> - Top-level index of all portals: https://dev.wix.com/docs/llms.txt
> - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt

## Resource: Create Booking Service from Prompt

## Article: Create Booking Service from Prompt

## Article Link: https://dev.wix.com/docs/api-reference/business-solutions/bookings/skills/create-booking-service-from-prompt.md

## Article Content:

# Create Booking Service from Natural Language Prompt

## When to Use

- User describes a service they want to create using natural language (e.g., "create a yoga class for $50", "set up consultation sessions", "add a personal training appointment")
- The intent is autonomous creation — fill in reasonable defaults rather than asking the user for every field

## Prerequisites

- **Wix Bookings app installed** (App ID: `13d21c63-b5ec-5912-8397-c3a5ddb27a97`)
- If Bookings is not installed, use [Install Wix Apps](https://dev.wix.com/docs/api-reference/business-management/app-installation/skills/install-wix-apps.md) to install it first

---

## Step 1: Determine Service Type

| User mentions | Type | Recipe |
|---|---|---|
| consultation, appointment, meeting, 1-on-1, one-on-one, session | `APPOINTMENT` | [Create Appointment Service](https://dev.wix.com/docs/api-reference/business-solutions/bookings/skills/create-appointment-service.md) |
| class, yoga, pilates, group session, group workout, bootcamp class | `CLASS` | [Create Class Service](https://dev.wix.com/docs/api-reference/business-solutions/bookings/skills/create-class-service.md) |
| workshop, program, course, training program, multi-session | `COURSE` | [Create Course Service](https://dev.wix.com/docs/api-reference/business-solutions/bookings/skills/create-course-service.md) |
| (unclear or unspecified) | `APPOINTMENT` | [Create Appointment Service](https://dev.wix.com/docs/api-reference/business-solutions/bookings/skills/create-appointment-service.md) |

## Step 2: Follow the Type-Specific Recipe

Once the service type is determined, follow the corresponding recipe linked above. Each recipe covers:

1. Gathering business context (staff, categories, currency, duplicate check)
2. Applying type-specific defaults (pricing, capacity, duration, staff assignment)
3. Creating the service via `bulkCreateServices`
4. Navigating to the service form for user review
5. Providing a summary of what was created and assumptions made