Overview
Ecwid is a lightweight e-commerce platform that bolts onto any existing site. The Automize Ecwid connector covers products, orders, customers, categories, coupons, discounts.
- Regions: Global, hosted.
- Plans: Free + paid (Venture, Business, Unlimited).
Setting up the connection
Auth type: API Key.
- Ecwid Control Panel → Apps → Storefront API → copy access token + Store ID.
- In Automize → Settings → Connectors → Ecwid. Paste both.
Find your credentials at https://my.ecwid.com/.
Rate limits
~40 req/sec, scaling with plan.
Data model
E-commerce:
Store ─┬─ Products ─── Categories
├─ Orders ─── Customers
└─ Coupons + DiscountsAvailable operations
11 operations available. Click any row to jump to its detail.
| Operation | Category | What it does |
|---|---|---|
| Create Coupon | General | Create a discount coupon |
| Create Product | General | Create a new product |
| Get Order | General | Get order by ID |
| Get Product | General | Get product by ID |
| List Categories | General | List all categories |
| List Coupons | General | List all discount coupons |
| List Customers | General | List all customers |
| List Orders | General | List all orders |
| List Products | General | List all products |
| Update Order | General | Update an order |
| Update Product | General | Update a product |
Operations
Create Coupon
Create a discount coupon
| Parameter | Required | Type | Description |
|---|---|---|---|
Name name | Yes | text | |
Code code | Yes | text | |
Discounttype discountType | Yes | text | |
Discount discount | Yes | text | |
Store Id store_id | Yes | text |
Create Product
Create a new product
| Parameter | Required | Type | Description |
|---|---|---|---|
Name name | Yes | text | |
Price price | Yes | number | |
Sku sku | Yes | text | |
Quantity quantity | Yes | number | |
Store Id store_id | Yes | text |
Tips
- name + price + sku.
Get Order
Get order by ID
| Parameter | Required | Type | Description |
|---|---|---|---|
Store Id store_id | Yes | text | |
Order Id order_id | Yes | text |
Get Product
Get product by ID
| Parameter | Required | Type | Description |
|---|---|---|---|
Store Id store_id | Yes | text | |
Product Id product_id | Yes | text |
List Categories
List all categories
| Parameter | Required | Type | Description |
|---|---|---|---|
Store Id store_id | Yes | text |
List Coupons
List all discount coupons
| Parameter | Required | Type | Description |
|---|---|---|---|
Store Id store_id | Yes | text |
List Customers
List all customers
| Parameter | Required | Type | Description |
|---|---|---|---|
Store Id store_id | Yes | text |
Tips
- Filter by email, search.
List Orders
List all orders
| Parameter | Required | Type | Description |
|---|---|---|---|
Store Id store_id | Yes | text |
Tips
- Filter by date, paymentStatus, fulfillmentStatus.
List Products
List all products
| Parameter | Required | Type | Description |
|---|---|---|---|
Store Id store_id | Yes | text |
Tips
- Filter by keyword, category, sku.
Update Order
Update an order
| Parameter | Required | Type | Description |
|---|---|---|---|
Fulfillmentstatus fulfillmentStatus | Yes | text | |
Trackingnumber trackingNumber | Yes | text | |
Store Id store_id | Yes | text | |
Order Id order_id | Yes | text |
Update Product
Update a product
| Parameter | Required | Type | Description |
|---|---|---|---|
Name name | Yes | text | |
Price price | Yes | number | |
Store Id store_id | Yes | text | |
Product Id product_id | Yes | text |
FAQ
- vs Shopify?
- Ecwid is widget-style – drops into any CMS. Shopify is full hosted storefront. Use Ecwid to add commerce to existing sites.