No Products in the Cart
Clothovia’s Facebook-Sync feature keeps Clothovia’s Shopify (and vendor) product catalog in perfect sync with your Facebook Commerce Catalog and Instagram Shop—automatically, in real time.
1. How It Works
i) Data Source
We pull your product data (title, description, images, price, inventory) from Shopify and any connected vendor feeds.
ii) Graph API Calls
- Catalog endpoint (`GET /{catalog_id}/products`, `POST /{catalog_id}/products`)
- Product endpoint(`GET /{product_id}`, `POST /{product_id}`)
- Inventory endpoint (`POST /{product_id}/inventories`)
iii) Automatic Updates
On every product create/update in Shopify, Clothovia triggers a backend job to push the change to Facebook via those endpoints.
---
2. API Details
| Endpoint | Purpose | Scope Needed |
|---|---|---|
GET /{catalog_id}/products |
List all products in your Facebook catalog | catalogs_read |
POST /{catalog_id}/products |
Create a new product in your Facebook catalog | catalogs_manage |
POST /{product_id} |
Update product metadata | catalogs_manage |
POST /{product_id}/inventories |
Sync inventory levels | pages_manage_inventory |
<details>
<summary>Sample curl request</summary>curl -X POST \
-F 'access_token=<YOUR_TOKEN>' \
-F 'name=Classic Denim Jacket' \
-F 'description=100% cotton, slim fit.' \
-F 'price=49.99 USD' \
-F 'inventory=250' \
https://graph.facebook.com/v17.0/{catalog_id}/products
</details>
3. Permissions & Scopes
- catalogs_read – to fetch existing catalog entries
- catalogs_manage – to create/update products
- pages_manage_inventory – to push inventory changes
4. Future SaaS Seller Portal (Coming Soon)
Later this year we’ll launch a full Clothovia Seller Dashboard where you can:
- Onboard new vendors with a guided wizard
- Manage multiple storefronts from one account
- Schedule bulk exports/imports
- View sync logs & error reports
Stay tuned for beta access!
5. Need Help ?
Email our integration team at support@clothovia.com or visit our FAQ page.