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 TypeIndexed Fields
Productstitle, description, tags
Ordersnotes, line items
Customersemail, notes, tags
Collectionstitle, description

Configuration

{
  "settings": {
    "sync_orders": true,
    "sync_customers": true,
    "order_status": ["fulfilled", "unfulfilled"]
  }
}

Next Steps