> 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: Add Store Pages to Site ## Article: Add Store Pages to Site ## Article Link: https://dev.wix.com/docs/api-reference/business-solutions/stores/skills/add-store-pages-to-site.md ## Article Content: # Add Store Pages to Site This recipe demonstrates how to add checkout and cart pages to a Wix site when the Stores app is installed but pages are missing. ## Overview When Wix Stores is installed on a site, it should automatically create cart and checkout pages. However, in some cases these pages may be missing. This recipe provides a way to add them programmatically. ## Prerequisites - Wix Stores app installed on the site - API access with site management permissions --- ## Step 1: Add Pages to Site **Endpoint**: `POST https://www.wix.com/_api/add-pages-to-site/install` **Request**: ```bash curl -X POST \ 'https://www.wix.com/_api/add-pages-to-site/install' \ -H 'Authorization: ' \ -H 'Content-Type: application/json' \ -d '{}' ``` **Response**: Empty body on success. ### IMPORTANT NOTES: - This endpoint adds missing store pages (cart, checkout) if they don't exist - The request body is empty - no parameters needed - Only required Authorization header --- ## When to Use This Recipe Use this recipe when: - Checkout flow fails because checkout page is missing - Cart functionality doesn't work - Store was migrated or had page issues - You receive errors about missing store pages --- ## Next Steps After adding pages: - Verify checkout flow works by creating a test order - Customize page designs if needed via the Editor - Set up payment methods if not already configured