┌──────────────────────────────────────────────────────────────┐
│ function fetchShopifyOrder(orderId) { │
│ Logger.log("===== FETCH SHOPIFY ORDER ====="); │
│ │
│ const response = shopifyRestRequest( │
│ "get", │
│ `/orders/${orderId}.json` │
│ ); │
│ │
│ return response.order; │
│ } │
└──────────────────────────────────────────────────────────────┘