Store provisioning, configuration, categories, and business manager integration APIs.
From wix-ecom-coworknpx claudepluginhub itayher/wix-ecom-cowork --plugin wix-ecom-coworkThis skill uses the workspace's default tool permissions.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides agentic engineering workflows: eval-first loops, 15-min task decomposition, model routing (Haiku/Sonnet/Opus), AI code reviews, and cost tracking.
Store provisioning, configuration, categories, and business manager integration APIs.
df7c18eb-009b-4868-9891-15e19dddbe67${API_KEY}${SITE_ID}Initialize or provision the Wix store for a site.
Endpoint: POST /_api/wix-ecommerce-renderer-web/store-manager/provision-store
curl -X POST "https://www.wixapis.com/_api/wix-ecommerce-renderer-web/store-manager/provision-store" \
-H "Authorization: ${API_KEY}" \
-H "wix-site-id: ${SITE_ID}" \
-H "Content-Type: application/json" \
-d '{}'
Use Case: Called when first setting up a store or ensuring store infrastructure exists.
Retrieve business manager configuration and settings for the store.
Endpoint: GET /_api/wix-ecommerce-renderer-web/store-manager/business-manager-info
curl -X GET "https://www.wixapis.com/_api/wix-ecommerce-renderer-web/store-manager/business-manager-info" \
-H "Authorization: ${API_KEY}" \
-H "wix-site-id: ${SITE_ID}"
Response Contains:
Retrieve system notifications, alerts, and updates for the store.
Endpoint: GET /_api/wix-ecommerce-renderer-web/store-manager/get-notifications
curl -X GET "https://www.wixapis.com/_api/wix-ecommerce-renderer-web/store-manager/get-notifications" \
-H "Authorization: ${API_KEY}" \
-H "wix-site-id: ${SITE_ID}"
Use Cases:
Retrieve all product categories configured in the store.
Endpoint: GET /_api/wix-ecommerce-renderer-web/store-manager/categories
curl -X GET "https://www.wixapis.com/_api/wix-ecommerce-renderer-web/store-manager/categories" \
-H "Authorization: ${API_KEY}" \
-H "wix-site-id: ${SITE_ID}"
Response Structure:
{
"categories": [
{
"id": "category-123",
"name": "Electronics",
"slug": "electronics",
"visible": true,
"parentId": null,
"numberOfProducts": 45
}
]
}
Use Cases:
Standard HTTP error codes:
200 - Success401 - Unauthorized (check API key)403 - Forbidden (check permissions)404 - Store not found or not provisioned500 - Server error