Shopify Integration
Connect Shopify products, orders, and customers to Metalogue
Shopify Integration
Connect your Shopify store to index products, orders, and customer data.
Quick Start
const connector = await client.createConnector({
connector_type: 'shopify',
display_name: 'Company Store',
credentials: {
shop_domain: 'store.myshopify.com',
access_token: 'shpat_xxxxxxxxxxxx',
},
});
await client.syncConnector(connector.connector_id, true);
Synced Content
| Content Type | Indexed Fields |
|---|---|
| Products | title, description, tags |
| Orders | notes, line items |
| Customers | email, notes, tags |
| Collections | title, description |
Configuration
{
"settings": {
"sync_orders": true,
"sync_customers": true,
"order_status": ["fulfilled", "unfulfilled"]
}
}
