### Shopify Wineshipping SKU Mapping Example Source: https://context7.com/context7/help_wineshipping/llms.txt An example of SKU mapping configuration for the Wineshipping integration with Shopify. This JSON structure shows how to link Shopify product variants and SKUs to their corresponding ACP SKUs, enabling accurate inventory synchronization and order fulfillment. Ensure the 'sync_inventory' flag is set to true for items that require it. ```json { "shopify_variant_id": "39485748372580", "shopify_sku": "CAB-2024-750", "acp_sku": "CAB-2024-750", "product_title": "2024 Cabernet Sauvignon", "sync_inventory": true, "current_shopify_qty": 145, "current_acp_qty": 145 } ``` -------------------------------- ### Example Data Export JSON Source: https://context7.com/context7/help_wineshipping/llms.txt A JSON object representing example exported data for a shipment, including tracking number, customer name, origin/destination states, delivery status, delivery time, and delivery date. This data structure is useful for understanding the format of exported shipment information. ```json { "tracking_number": "1Z999AA10123456784", "slug": "ups", "customer_name": "Jane Smith", "destination_state": "CA", "origin_state": "CA", "tag": "Delivered", "delivery_time": 3, "shipment_delivery_date": "2025-10-08T14:30:00Z", "on_time_status": "on_time" } ``` -------------------------------- ### Branded Tracking Page Configuration JSON Source: https://context7.com/context7/help_wineshipping/llms.txt An example JSON object demonstrating the configuration options for a custom branded tracking page. This includes setting brand colors, logo, hero banner content, and recommended products. ```json { "page_name": "Napa Valley Winery Tracking", "primary_color": "#8B0000", "secondary_color": "#FFD700", "logo_url": "https://cdn.winery.com/logo.png", "hero_banner": { "enabled": true, "image": "https://cdn.winery.com/vineyard.jpg", "text": "Spring Release: 20% Off All Reds", "cta_button": "Shop Now", "cta_url": "https://winery.com/spring-sale" }, "recommended_products": [ { "name": "2024 Cabernet Sauvignon", "price": "$65", "image": "https://cdn.winery.com/cab.jpg", "url": "https://winery.com/2024-cab" } ] } ``` -------------------------------- ### Commerce7 Wineshipping App Configuration Source: https://context7.com/context7/help_wineshipping/llms.txt This JSON object outlines the configuration settings for the Wineshipping app integration with Commerce7. It covers order import, tracking synchronization, inventory management, and order customization options. Ensure all API credentials and sync preferences are correctly set within the Wineshipping ACP. ```json { "integration_name": "Commerce7", "order_import": { "enabled": true, "auto_import": true, "import_status": ["processing", "payment_captured"], "skip_compliance_failed": false }, "tracking_sync": { "enabled": true, "real_time": true, "include_delivery_date": true }, "inventory_sync": { "enabled": true, "sync_frequency": "hourly", "sync_direction": "bidirectional" }, "order_customization": { "allow_ship_date_override": true, "allow_address_correction": true, "require_compliance_approval": true } } ``` -------------------------------- ### Report Subscription Configuration (JSON) Source: https://context7.com/context7/help_wineshipping/llms.txt Defines the structure for configuring automated report subscriptions. It specifies report details, scheduling, parameters, and delivery preferences such as recipients and format. This JSON object is used to set up recurring report generation and email delivery. ```json { "report_name": "Daily Shipment Summary", "report_type": "shipment_performance", "frequency": "daily", "schedule": { "time": "08:00", "timezone": "America/Los_Angeles", "weekdays_only": true }, "parameters": { "date_range": "yesterday", "warehouse": "all", "include_exceptions": true }, "delivery": { "recipients": [ "operations@winery.com", "shipping@winery.com" ], "format": "excel", "subject": "Daily Shipment Report - {{date}}", "send_empty": false }, "active": true } ``` -------------------------------- ### Configure Weather Hold Rules Source: https://context7.com/context7/help_wineshipping/llms.txt Defines the rules for automatically placing shipments on hold due to extreme weather conditions. This includes temperature thresholds, applicable states, seasonal variations, notification settings, and override permissions. ```json { "weather_hold_rules": { "high_temp_threshold": 85, "low_temp_threshold": 32, "apply_to_states": ["AZ", "TX", "FL", "NV", "NM"], "seasonal_rules": { "summer": { "months": [6, 7, 8, 9], "high_threshold": 80, "auto_apply": true }, "winter": { "months": [12, 1, 2], "low_threshold": 35, "states": ["ND", "SD", "MN", "WI", "MI"] } }, "notification": { "send_to_customer": true, "send_to_internal": true, "template": "weather_hold_standard" }, "override_allowed": true, "override_requires_acknowledgment": true } } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.