wix-manage

Configure and manage Wix business solutions through REST API recipes.

Updated Apr 19, 2026
One-click install
npx skills add https://github.com/divinaarmuela/Content --skill wix-manage-divinaarmuela
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: wix-manage
Source: https://github.com/divinaarmuela/Content/tree/main/.claude/skills/wix-manage
Command: npx skills add https://github.com/divinaarmuela/Content --skill wix-manage-divinaarmuela

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Managing a Wix site's business apps (stores, bookings, payments, CMS, contacts, marketing) requires knowing dozens of REST APIs, undocumented integration patterns, and correct call sequences. This Skill provides an indexed library of tested recipes that route any management request to the right API workflow. ## Core Features & Use Cases - Business solution recipes: Step-by-step REST API instructions for stores, bookings, get-paid, CMS, contacts, forms, media, pricing plans, restaurants, blog, events, domains, analytics, accessibility, and more. - eCommerce strategy orchestration: Analyzes site data across discounts, shipping, and gift cards to generate and track cross-domain recommendations with a persisted lifecycle (PROPOSED to DONE). - Dashboard navigation links: Builds direct manage.wix.com URLs for every business entity, pairing API results with 'view it in your dashboard' links. - Use Case: A user asks to 'create a yoga class for $50' — the Skill routes to the class-service recipe, creates the service via bulkCreateServices, and returns a dashboard link to manage it. ## Quick Start Ask the assistant to set up or manage any part of your Wix site, for example: create a booking service, add a store coupon, or query my site analytics.

Frequently Asked Questions about wix-manage

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a Wix booking service via API?

Use the Bookings Services V2 bulkCreateServices endpoint with the service type (APPOINTMENT, CLASS, or COURSE), pricing, and schedule configuration. For COURSE services, you must also create session events with the Calendar bulkCreateEvents API using the returned schedule ID.

How do I process payments for Wix bookings?

Booking payments flow through the eCommerce system: create the booking, then use the booking ID as a catalog item ID to create a checkout and order via the ecom v1 API. Booking confirmation is independent of payment status, which updates asynchronously.

Does this Skill cover Wix frontend or SDK development?

No. These recipes cover REST API operations for configuring and managing business entities only. Frontend development, Velo SDK usage, and displaying data to site visitors are explicitly out of scope.

What authentication is required for the Wix REST API?

Every call requires an Authorization header using either a Wix API key or OAuth access token. Body-bearing calls also need a Content-Type: application/json header.

Why does my Wix course booking not appear on the calendar?

Course bookings handle enrollment only, not session scheduling. You must create calendar events separately via the Calendar v3 bulk events endpoint with the course schedule ID and at least one staff resource.

How do I get a dashboard link for a Wix entity I created via API?

Dashboard pages follow the pattern https://manage.wix.com/dashboard/{metaSiteId}/{route}. Each solution's dashboard-navigation recipe maps entities to their routes, so you can pair any API result with a direct management link.