{"workflow":{"id":13829,"name":"Sync Shopify and WooCommerce sales into a Google Sheets accounting ledger","views":51,"recentViews":0,"totalViews":51,"createdAt":"2026-03-03T11:07:45.671Z","description":"# (Retail) Auto-Sync Transactions to Accounting Tools\n\nThis workflow automates the collection and standardization of sales data from Shopify and WooCommerce into a centralized Google Sheets ledger. It triggers on new orders, normalizes disparate platform data, distinguishes between sales and refunds, and formats the information for accounting readiness. This eliminates manual data entry and ensures real-time financial tracking across multiple storefronts.\n\n\n### Quick Implementation Steps\n\n- **Connect Triggers:** Authenticate your Shopify and WooCommerce accounts in the respective \"Order Events\" nodes.\n- **Set Webhooks:** Add the generated n8n Webhook URLs to your Shopify and WooCommerce notification settings.\n- **Configure Sheets:** Select your target spreadsheet and sheet name in the \"Log to Google Sheets\" node.\n- **Map Credentials:** Ensure Google Sheets OAuth2 is connected to authorize the \"Append or Update\" action.\n- **Verify Fields:** Test the workflow to ensure platform-specific keys map correctly to your sheet columns.\n\n\n## What It Does\n\nThe workflow acts as a bridge between e-commerce storefronts and financial reporting tools:\n\n- **Multi-Source Ingestion:** Listens for real-time webhooks from both Shopify (orders/create) and WooCommerce (order.created).\n- **Data Normalization:** Translates platform-specific JSON (like current_total_price vs total) into a single internal schema.\n- **Smart Routing:** Evaluates the transaction type to determine if the record is a standard sale or a refund.\n- **Accounting Formatting:** Structures data into financial-ready blocks, including calculated line items, tax details, and audit notes.\n- **Centralized Logging:** Records all activity in Google Sheets, using an \"Append or Update\" logic to prevent duplicate entries.\n\n\n## Who's It For\n\n- E-commerce Business Owners managing multiple stores who need a single \"source of truth\" for daily revenue.\n- Accountants & Bookkeepers who require standardized transaction data without manual export/import tasks.\n- Operations Managers looking to monitor multi-platform sales performance in real-time within a shared spreadsheet.\n\n\n## Technical Workflow Breakdown\n\n### Entry Points (Triggers)\n\n- **Shopify Order Events:** Listens for the orders/create topic to capture new Shopify transactions.\n- **WooCommerce Order Events:** Monitors the order.created event for new WooCommerce sales.\n\n\n### Processing & Logic\n\n- **Platform Configuration:** Separate nodes for Shopify and WooCommerce that map native fields to standardized internal keys.\n- **Merge Platform Data:** Consolidates the two distinct platform paths into a single unified stream.\n- **Format Transaction Data:** A \"Set\" node that builds the final data object, creating a \"description\" string and assigning global statuses.\n- **Check Transaction Type:** An \"If\" node that routes data based on whether the transactionType equals \"sale\".\n\n\n### Output & Integrations\n\n- **Format Sale/Refund Entry:** Logic-specific nodes that prepare line-item details (e.g., setting ItemRef to \"Sales\" or \"Refund\") and handle currency formatting.\n- **Google Sheets (Log Data):** Appends the final formatted record to the \"Price_Changes_Log\" spreadsheet, including date, customer, amount, and document numbers.\n\n\n## Customization\n\n### Add New Platforms\n\nYou can extend this workflow by adding a new Trigger node (e.g., Magento or Amazon) and connecting it to a new Configuration node before the Merge node.\n\n### Adjust Tax/Fee Logic\n\nModify the \"Format Sale Entry\" node expressions to calculate net revenue after marketplace fees or to separate regional tax codes into different columns.\n\n### Change Log Destination\n\nSwap the Google Sheets node for an ERP or Accounting node (like QuickBooks or Xero) to push data directly into professional accounting software.\n\n\n## Troubleshooting Guide\n\n| Issue                  | Possible Cause                           | Solution                                                                                           |\n| :--------------------- | :--------------------------------------- | :------------------------------------------------------------------------------------------------- |\n| Webhook Not Triggering | Incorrect Webhook URL in Store settings. | Copy the Production Webhook URL from n8n and update your Shopify/WooCommerce settings.             |\n| Missing Data Fields    | Platform API version mismatch.           | Check the \"Configuration\" nodes to ensure JSON keys match the current platform payload.            |\n| Sheets Sync Failure    | Column headers don't match.              | Ensure your Google Sheet has headers matching the keys in the \"Log to Google Sheets\" node.         |\n| Duplicate Records      | \"Append\" mode used instead of \"Update\".  | Set the Google Sheets operation to \"Append or Update\" and select a unique identifier like orderId. |\n\n\n## Need Help?\n\nIf you need help mapping additional custom fields from your store or connecting this to a professional accounting suite like QuickBooks, we're here to help. Feel free to contact our n8n developers at WeblineIndia.","workflow":{"id":"qdsK4hpd4LVM1NoB","meta":{"instanceId":"14e4c77104722ab186539dfea5182e419aecc83d85963fe13f6de862c875ebfa","templateCredsSetupCompleted":true},"name":"(Retail) Auto-Sync Transactions to Accounting Tools","tags":[],"nodes":[{"id":"0625b8c1-aa39-44df-959f-4e652e70b392","name":"Shopify Order Events","type":"n8n-nodes-base.shopifyTrigger","position":[176,144],"webhookId":"6d7be645-dbbc-46b7-8658-0db25d01c494","parameters":{"topic":"orders/create","authentication":"accessToken"},"typeVersion":1},{"id":"432ce392-47d6-4a21-bc58-77b19242b3ea","name":"WooCommerce Order Events","type":"n8n-nodes-base.wooCommerceTrigger","position":[176,320],"webhookId":"5566a6e1-ccbe-42d4-aecb-478bc48bf4f9","parameters":{"event":"order.created"},"typeVersion":1},{"id":"4dc27308-6725-44ae-8e4d-26a750a48ad5","name":"Merge Platform Data","type":"n8n-nodes-base.merge","position":[992,240],"parameters":{},"typeVersion":3.2},{"id":"2c82cdfb-f175-45c1-a3b3-e9bb3dcd79c6","name":"Format Transaction Data","type":"n8n-nodes-base.set","position":[1216,240],"parameters":{"options":{},"assignments":{"assignments":[{"id":"id-1","name":"orderId","type":"string","value":"={{ $json.orderId }}"},{"id":"id-2","name":"orderNumber","type":"string","value":"={{ $json.orderNumber }}"},{"id":"id-3","name":"amount","type":"number","value":"={{ $json.totalAmount }}"},{"id":"id-4","name":"subtotal","type":"number","value":"={{ $json.subtotal }}"},{"id":"id-5","name":"tax","type":"number","value":"={{ $json.totalTax }}"},{"id":"id-6","name":"currency","type":"string","value":"={{ $json.currency }}"},{"id":"id-7","name":"customerEmail","type":"string","value":"={{ $json.customerEmail }}"},{"id":"id-8","name":"customerName","type":"string","value":"={{ $json.customerName }}"},{"id":"id-9","name":"source","type":"string","value":"={{ $json.sourceSystem }}"},{"id":"id-10","name":"transactionType","type":"string","value":"={{ $json.transactionType }}"},{"id":"id-11","name":"status","type":"string","value":"={{ $json.financialStatus }}"},{"id":"id-12","name":"date","type":"string","value":"={{ $json.createdAt }}"},{"id":"id-13","name":"description","type":"string","value":"={{ 'Order #' + $json.orderNumber + ' from ' + $json.sourceSystem }}"}]}},"typeVersion":3.4},{"id":"43368cd4-2fd7-4033-9d4b-20c43d9a2143","name":"Format Sale Entry","type":"n8n-nodes-base.set","position":[2016,176],"parameters":{"options":{},"assignments":{"assignments":[{"id":"id-1","name":"TxnDate","type":"string","value":"={{ $json.date.split('T')[0] }}"},{"id":"id-2","name":"CustomerRef","type":"object","value":"={{ { value: '1', name: $json.customerName } }}"},{"id":"id-3","name":"Line","type":"array","value":"={{ JSON.stringify([{ Amount: $json.amount, DetailType: 'SalesItemLineDetail', SalesItemLineDetail: { ItemRef: { value: '1', name: 'Sales' }, Qty: 1, UnitPrice: $json.amount, TaxCodeRef: { value: 'TAX' } } }]) }}"},{"id":"id-4","name":"TotalAmt","type":"number","value":"={{ $json.amount }}"},{"id":"id-5","name":"PrivateNote","type":"string","value":"={{ $json.description + ' - Order ID: ' + $json.orderId }}"},{"id":"id-6","name":"DocNumber","type":"string","value":"={{ $json.orderNumber }}"},{"id":"id-7","name":"CurrencyRef","type":"object","value":"={{ { value: $json.currency } }}"}]}},"typeVersion":3.4},{"id":"ed1edb0c-6b5e-43b7-a41f-960db674a722","name":"Format Refund Entry","type":"n8n-nodes-base.set","position":[2016,320],"parameters":{"options":{},"assignments":{"assignments":[{"id":"id-1","name":"TxnDate","type":"string","value":"={{ $json.date.split('T')[0] }}"},{"id":"id-2","name":"CustomerRef","type":"object","value":"={{ { value: '1', name: $json.customerName } }}"},{"id":"id-3","name":"Line","type":"array","value":"={{ JSON.stringify([{ Amount: Math.abs($json.amount), DetailType: 'SalesItemLineDetail', SalesItemLineDetail: { ItemRef: { value: '1', name: 'Refund' }, Qty: 1, UnitPrice: Math.abs($json.amount) } }]) }}"},{"id":"id-4","name":"TotalAmt","type":"number","value":"={{ Math.abs($json.amount) }}"},{"id":"id-5","name":"PrivateNote","type":"string","value":"={{ 'Refund - ' + $json.description + ' - Order ID: ' + $json.orderId }}"},{"id":"id-6","name":"DocNumber","type":"string","value":"={{ 'REF-' + $json.orderNumber }}"}]}},"typeVersion":3.4},{"id":"fb63da36-e07b-4e9f-a089-38de69e29432","name":"Log to Google Sheets","type":"n8n-nodes-base.googleSheets","position":[2464,256],"parameters":{"columns":{"value":{},"schema":[{"id":"TxnDate","type":"string","display":true,"removed":false,"required":false,"displayName":"TxnDate","defaultMatch":false,"canBeUsedToMatch":true},{"id":"CustomerRef","type":"string","display":true,"removed":false,"required":false,"displayName":"CustomerRef","defaultMatch":false,"canBeUsedToMatch":true},{"id":"Line","type":"string","display":true,"removed":false,"required":false,"displayName":"Line","defaultMatch":false,"canBeUsedToMatch":true},{"id":"TotalAmt","type":"string","display":true,"removed":false,"required":false,"displayName":"TotalAmt","defaultMatch":false,"canBeUsedToMatch":true},{"id":"PrivateNote","type":"string","display":true,"removed":false,"required":false,"displayName":"PrivateNote","defaultMatch":false,"canBeUsedToMatch":true},{"id":"DocNumber","type":"string","display":true,"removed":false,"required":false,"displayName":"DocNumber","defaultMatch":false,"canBeUsedToMatch":true},{"id":"CurrencyRef","type":"string","display":true,"removed":false,"required":false,"displayName":"CurrencyRef","defaultMatch":false,"canBeUsedToMatch":true}],"mappingMode":"autoMapInputData","matchingColumns":[],"attemptToConvertTypes":false,"convertFieldsToString":false},"options":{},"operation":"appendOrUpdate","sheetName":{"__rl":true,"mode":"name","value":"Sheet3"},"documentId":{"__rl":true,"mode":"list","value":"{sheetId}","cachedResultUrl":"https://docs.google.com/spreadsheets/d/{sheetId}=drivesdk","cachedResultName":"Price_Changes_Log"}},"credentials":{"googleSheetsOAuth2Api":{"id":"sxB24yZKapim0eMG","name":"Google Sheets account 3"}},"typeVersion":4.7},{"id":"c9c81ef1-c594-47e7-b1ae-eaef11f5c19f","name":"Check Transaction Type","type":"n8n-nodes-base.if","position":[1424,240],"parameters":{"options":{},"conditions":{"options":{"version":2,"leftValue":"","caseSensitive":true,"typeValidation":"strict"},"combinator":"and","conditions":[{"id":"2c25b7a6-47d5-4f8b-a5c3-19a920de834e","operator":{"type":"string","operation":"equals"},"leftValue":"={{ $json.transactionType }}","rightValue":"sale"}]}},"typeVersion":2.2},{"id":"3719b8e9-1394-470b-95ee-38800e5a9865","name":"Shopify Configuration","type":"n8n-nodes-base.set","position":[432,144],"parameters":{"options":{},"assignments":{"assignments":[{"id":"id-1","name":"orderId","type":"number","value":"={{ $json.id }}"},{"id":"id-2","name":"orderNumber","type":"string","value":"={{ $json.order_number }}"},{"id":"id-3","name":"totalAmount","type":"number","value":"={{ $json.current_total_price }}"},{"id":"id-4","name":"subtotal","type":"number","value":"={{ $json.current_subtotal_price }}"},{"id":"id-5","name":"totalTax","type":"number","value":"={{ $json.current_total_tax }}"},{"id":"id-6","name":"currency","type":"string","value":"={{ $json.currency }}"},{"id":"id-7","name":"customerEmail","type":"string","value":"={{ $json.customer.email || 'N/A' }}"},{"id":"id-8","name":"customerName","type":"string","value":"={{ $json.customer.first_name + ' ' + $json.customer.last_name }}"},{"id":"id-9","name":"financialStatus","type":"string","value":"={{ $json.financial_status }}"},{"id":"id-10","name":"sourceSystem","type":"string","value":"shopify"},{"id":"id-11","name":"transactionType","type":"string","value":"sale"},{"id":"id-12","name":"createdAt","type":"string","value":"={{ $json.created_at }}"}]}},"typeVersion":3.4},{"id":"a0bb07c1-d143-4651-9e72-5f56c07a9d19","name":"WooCommerce Configuration","type":"n8n-nodes-base.set","position":[432,320],"parameters":{"options":{},"assignments":{"assignments":[{"id":"id-1","name":"orderId","type":"number","value":"={{ $json.id }}"},{"id":"id-2","name":"orderNumber","type":"string","value":"={{ $json.number }}"},{"id":"id-3","name":"totalAmount","type":"number","value":"={{ $json.total }}"},{"id":"id-4","name":"subtotal","type":"number","value":"={{ $json.subtotal || '0' }}"},{"id":"id-5","name":"totalTax","type":"number","value":"={{ $json.total_tax }}"},{"id":"id-6","name":"currency","type":"string","value":"={{ $json.currency }}"},{"id":"id-7","name":"customerEmail","type":"string","value":"={{ $json.billing.email || 'N/A' }}"},{"id":"id-8","name":"customerName","type":"string","value":"={{ $json.billing.first_name + ' ' + $json.billing.last_name }}"},{"id":"id-9","name":"financialStatus","type":"string","value":"={{ $json.status }}"},{"id":"id-10","name":"sourceSystem","type":"string","value":"woocommerce"},{"id":"id-11","name":"transactionType","type":"string","value":"sale"},{"id":"id-12","name":"createdAt","type":"string","value":"={{ $json.date_created }}"}]}},"typeVersion":3.4},{"id":"d43057a0-4775-46db-ad17-5559cac3c269","name":"Sticky Note10","type":"n8n-nodes-base.stickyNote","position":[-704,-448],"parameters":{"width":544,"height":992,"content":"# How It Works\nThis workflow serves as an automated Retail Transaction Sync system, capturing sales and refund data from multiple e-commerce platforms to maintain a centralized financial ledger. It is initiated by Shopify and WooCommerce webhooks whenever a new order is created. The system normalizes disparate data formats from both platforms into a unified structure, evaluates whether the transaction is a sale or a refund, and automatically formats the data for accounting purposes before logging it into a Google Sheets database.\n\n# Setup Steps\n## Webhook Trigger\nConfigure your Shopify and WooCommerce admin panels to send \"Order Created\" notifications to the workflow's respective trigger URLs to ensure the workflow runs instantly whenever a customer completes a purchase.\n\n## Connect Accounts\nShopify: Provide an Access Token with required order permissions to the \"Shopify Order Events\" node.\nWooCommerce: Use API credentials to authenticate the \"WooCommerce Order Events\" node.\nGoogle Sheets: Set up Google OAuth2 credentials to allow the \"Log to Google Sheets\" node to write transaction data to your spreadsheet.\n\n## Configure Parameters\nStorage Nodes: Verify the Google Sheets Document ID and Sheet Name (e.g., \"Sheet3\") in the \"Log to Google Sheets\" node to ensure data is routed to your specific tracking table.\n\nData Mapping: Review the Shopify Configuration and WooCommerce Configuration nodes to ensure fields like total amount, currency, and customer details align with your store's structure.\n\n## Update Notifications\nTransaction Logging: Confirm that the Google Sheets account used has the necessary permissions to write to the target spreadsheet.\n\nVerify Headers: Ensure the column headers in your Google Sheet (e.g., TxnDate, CustomerRef, TotalAmt) match the keys defined in the \"Format Sale Entry\" and \"Format Refund Entry\" nodes."},"typeVersion":1},{"id":"f5ad9d00-e81f-4423-a451-d9d56941a9c5","name":"Sticky Note3","type":"n8n-nodes-base.stickyNote","position":[0,-96],"parameters":{"color":7,"width":816,"height":640,"content":"## Webhook Trigger and Set Configuration\nThe Shopify and WooCommerce Order Events nodes serve as the workflow's entry points, listening for orders/create and order.created webhooks to capture transaction data the moment a customer completes a purchase. Subsequent Shopify and WooCommerce Configuration nodes then normalize these native JSON payloads—mapping platform-specific fields like current_total_price or status to a unified internal schema—ensuring all order data is standardized for consistent downstream logging and analysis.\n"},"typeVersion":1},{"id":"129e1e95-dcde-408e-b75e-3a3490cd728e","name":"Sticky Note","type":"n8n-nodes-base.stickyNote","position":[880,-96],"parameters":{"color":7,"width":816,"height":640,"content":"## Merge, Format & Route Transaction Data \nThe Merge Platform Data node consolidates incoming streams from different e-commerce sources into a single workflow path. The subsequent Format Transaction Data node then maps various platform attributes—such as totalAmount, customerEmail, and sourceSystem—into a unified schema, ensuring all downstream operations receive consistent data structures regardless of the origin.\n\nThe final Check Transaction Type node acts as a router, evaluating the transactionType field to distinguish between \"sale\" and other entries. This allows the workflow to dynamically direct the formatted data to the appropriate accounting logic for processing sales or refunds.\n"},"typeVersion":1},{"id":"ecb03981-ba4e-4a7b-93e4-b0180ec55840","name":"Sticky Note4","type":"n8n-nodes-base.stickyNote","position":[1776,-96],"parameters":{"color":7,"width":1088,"height":640,"content":"## Transaction Formatting & Accounting Sync \nThe Format Sale and Format Refund Entry nodes prepare the normalized data for accounting by structuring it into financial records. They calculate absolute values for amounts, generate transaction dates, and create detailed line items (e.g., \"Sales\" or \"Refund\" tags) and private notes containing the original Order ID for audit tracking.\n\nThe final Log to Google Sheets node records these formatted entries into a centralized spreadsheet. By utilizing an \"append or update\" operation, it ensures that every transaction—whether a new sale or a processed refund—is accurately captured in the master ledger with all relevant metadata like customer names, currency, and document numbers.\n"},"typeVersion":1}],"active":false,"pinData":{"Shopify Order Events":[{"json":{"id":"{orderId}","name":"#1001","note":null,"tags":"","test":true,"token":"{orderToken}","app_id":306928484353,"number":1,"refunds":[],"user_id":null,"currency":"INR","customer":{"id":26734960050545,"note":null,"tags":"","state":"disabled","currency":"INR","created_at":"2025-12-29T17:40:25+05:30","tax_exempt":false,"updated_at":"2025-12-29T17:40:25+05:30","tax_exemptions":[],"verified_email":true,"default_address":{"id":37431145365873,"company":null,"country":"United States","default":true,"province":"New York","customer_id":26734960050545,"country_code":"US","country_name":"United States","province_code":"NY"},"admin_graphql_api_id":"gid://shopify/Customer/26734960050545","multipass_identifier":null,"sms_marketing_consent":null,"email_marketing_consent":{"state":"not_subscribed","opt_in_level":"single_opt_in","consent_updated_at":null}},"closed_at":null,"confirmed":true,"device_id":null,"po_number":null,"reference":null,"tax_lines":[],"total_tax":"0.00","browser_ip":null,"cart_token":null,"created_at":"2025-12-29T17:40:25+05:30","line_items":[{"id":44706265530737,"sku":null,"name":"Test Product","grams":0,"price":"50.00","title":"Test Product","duties":[],"vendor":null,"taxable":true,"quantity":2,"gift_card":false,"price_set":{"shop_money":{"amount":"50.00","currency_code":"INR"},"presentment_money":{"amount":"50.00","currency_code":"INR"}},"tax_lines":[],"product_id":null,"properties":[],"variant_id":null,"variant_title":null,"product_exists":false,"total_discount":"0.00","current_quantity":2,"attributed_staffs":[],"requires_shipping":true,"fulfillment_status":"fulfilled","total_discount_set":{"shop_money":{"amount":"0.00","currency_code":"INR"},"presentment_money":{"amount":"0.00","currency_code":"INR"}},"fulfillment_service":"manual","admin_graphql_api_id":"gid://shopify/LineItem/44706265530737","discount_allocations":[],"fulfillable_quantity":0,"variant_inventory_management":null}],"source_url":null,"tax_exempt":false,"updated_at":"2025-12-30T17:01:08+05:30","checkout_id":null,"location_id":null,"source_name":"306928484353","total_price":"100.00","cancelled_at":null,"fulfillments":[{"id":6510832288113,"name":"#1001.1","status":"success","receipt":{},"service":"manual","order_id":16523331862897,"created_at":"2025-12-29T17:40:25+05:30","line_items":[{"id":44706265530737,"sku":null,"name":"Test Product","grams":0,"price":"50.00","title":"Test Product","duties":[],"vendor":null,"taxable":true,"quantity":2,"gift_card":false,"price_set":{"shop_money":{"amount":"50.00","currency_code":"INR"},"presentment_money":{"amount":"50.00","currency_code":"INR"}},"tax_lines":[],"product_id":null,"properties":[],"variant_id":null,"variant_title":null,"product_exists":false,"total_discount":"0.00","current_quantity":2,"attributed_staffs":[],"requires_shipping":true,"fulfillment_status":"fulfilled","total_discount_set":{"shop_money":{"amount":"0.00","currency_code":"INR"},"presentment_money":{"amount":"0.00","currency_code":"INR"}},"fulfillment_service":"manual","admin_graphql_api_id":"gid://shopify/LineItem/44706265530737","discount_allocations":[],"fulfillable_quantity":0,"variant_inventory_management":null}],"updated_at":"2025-12-29T17:40:25+05:30","location_id":113357619569,"tracking_url":null,"tracking_urls":[],"origin_address":{},"shipment_status":null,"tracking_number":null,"tracking_company":null,"tracking_numbers":[],"admin_graphql_api_id":"gid://shopify/Fulfillment/6510832288113"}],"landing_site":null,"order_number":1001,"processed_at":"2025-12-29T17:40:25+05:30","total_weight":0,"cancel_reason":null,"payment_terms":null,"total_tax_set":{"shop_money":{"amount":"0.00","currency_code":"INR"},"presentment_money":{"amount":"0.00","currency_code":"INR"}},"checkout_token":null,"client_details":null,"discount_codes":[],"referring_site":null,"shipping_lines":[],"subtotal_price":"100.00","taxes_included":false,"billing_address":{"country":"United States","province":"New York","country_code":"US","province_code":"NY"},"customer_locale":null,"duties_included":false,"estimated_taxes":false,"note_attributes":[],"total_discounts":"0.00","total_price_set":{"shop_money":{"amount":"100.00","currency_code":"INR"},"presentment_money":{"amount":"100.00","currency_code":"INR"}},"financial_status":"paid","landing_site_ref":null,"shipping_address":{"country":"United States","province":"New York","country_code":"US","province_code":"NY"},"current_total_tax":"0.00","source_identifier":null,"total_outstanding":"100.00","fulfillment_status":"fulfilled","subtotal_price_set":{"shop_money":{"amount":"100.00","currency_code":"INR"},"presentment_money":{"amount":"100.00","currency_code":"INR"}},"total_tip_received":"0.00","confirmation_number":"8NVI08Y5K","current_total_price":"100.00","total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"INR"},"presentment_money":{"amount":"0.00","currency_code":"INR"}},"admin_graphql_api_id":"gid://shopify/Order/orderId","presentment_currency":"INR","current_total_tax_set":{"shop_money":{"amount":"0.00","currency_code":"INR"},"presentment_money":{"amount":"0.00","currency_code":"INR"}},"discount_applications":[],"payment_gateway_names":[],"current_subtotal_price":"100.00","total_line_items_price":"100.00","buyer_accepts_marketing":false,"current_total_discounts":"0.00","current_total_price_set":{"shop_money":{"amount":"100.00","currency_code":"INR"},"presentment_money":{"amount":"100.00","currency_code":"INR"}},"current_total_duties_set":null,"total_shipping_price_set":{"shop_money":{"amount":"0.00","currency_code":"INR"},"presentment_money":{"amount":"0.00","currency_code":"INR"}},"merchant_of_record_app_id":null,"original_total_duties_set":null,"current_subtotal_price_set":{"shop_money":{"amount":"100.00","currency_code":"INR"},"presentment_money":{"amount":"100.00","currency_code":"INR"}},"total_line_items_price_set":{"shop_money":{"amount":"100.00","currency_code":"INR"},"presentment_money":{"amount":"100.00","currency_code":"INR"}},"current_total_discounts_set":{"shop_money":{"amount":"0.00","currency_code":"INR"},"presentment_money":{"amount":"0.00","currency_code":"INR"}},"merchant_business_entity_id":"122873086321","current_total_additional_fees_set":null,"original_total_additional_fees_set":null,"total_cash_rounding_refund_adjustment_set":{"shop_money":{"amount":"0.00","currency_code":"INR"},"presentment_money":{"amount":"0.00","currency_code":"INR"}},"total_cash_rounding_payment_adjustment_set":{"shop_money":{"amount":"0.00","currency_code":"INR"},"presentment_money":{"amount":"0.00","currency_code":"INR"}}}}],"WooCommerce Order Events":[{"json":{"id":458,"sku":"TSHIRT-001","name":"Premium Cotton T-Shirt","slug":"premium-cotton-t-shirt","tags":[],"type":"simple","price":"300","_links":{"self":[{"href":"https://domain-plugins-test.projectbeta.biz/wp-json/wc/v3/products/458","targetHints":{"allow":["GET","POST","PUT","PATCH","DELETE"]}}],"collection":[{"href":"https://domain-plugins-test.projectbeta.biz/wp-json/wc/v3/products"}]},"brands":[],"images":[],"status":"publish","weight":"","on_sale":true,"virtual":false,"featured":false,"downloads":[],"meta_data":[{"id":2857,"key":"_enable_np_sticker","value":""},{"id":2858,"key":"_np_no_of_days","value":"0"},{"id":2859,"key":"_np_sticker_pos","value":""},{"id":2860,"key":"np_sticker_left_right","value":""},{"id":2861,"key":"np_sticker_top","value":""},{"id":2862,"key":"_np_product_option","value":"image"},{"id":2863,"key":"np_sticker_image_width","value":""},{"id":2864,"key":"np_sticker_image_height","value":""},{"id":2865,"key":"_np_product_custom_text","value":""},{"id":2866,"key":"_np_sticker_type","value":"ribbon"},{"id":2867,"key":"_np_product_custom_text_fontcolor","value":"#ffffff"},{"id":2868,"key":"_np_product_custom_text_backcolor","value":""},{"id":2869,"key":"_np_product_custom_text_padding_top","value":""},{"id":2870,"key":"_np_product_custom_text_padding_right","value":""},{"id":2871,"key":"_np_product_custom_text_padding_bottom","value":""},{"id":2872,"key":"_np_product_custom_text_padding_left","value":""},{"id":2873,"key":"_np_sticker_custom_id","value":"0"},{"id":2874,"key":"np_sticker_rotate","value":""},{"id":2875,"key":"np_sticker_animation_type","value":"none"},{"id":2876,"key":"np_sticker_animation_direction","value":""},{"id":2877,"key":"np_sticker_animation_scale","value":""},{"id":2878,"key":"np_sticker_animation_iteration_count","value":""},{"id":2879,"key":"np_sticker_animation_delay","value":""},{"id":2880,"key":"_enable_np_product_schedule_sticker","value":"no"},{"id":2881,"key":"_np_product_schedule_start_sticker_date_time","value":""},{"id":2882,"key":"_np_product_schedule_end_sticker_date_time","value":""},{"id":2883,"key":"_np_product_schedule_option","value":"image_schedule"},{"id":2884,"key":"np_schedule_sticker_image_width","value":""},{"id":2885,"key":"np_schedule_sticker_image_height","value":""},{"id":2886,"key":"_np_schedule_sticker_custom_id","value":"0"},{"id":2887,"key":"_np_schedule_product_custom_text","value":""},{"id":2888,"key":"_np_schedule_sticker_type","value":""},{"id":2889,"key":"_np_schedule_product_custom_text_fontcolor","value":"#ffffff"},{"id":2890,"key":"_np_schedule_product_custom_text_backcolor","value":""},{"id":2891,"key":"_np_schedule_product_custom_text_padding_top","value":""},{"id":2892,"key":"_np_product_schedule_custom_text_padding_right","value":""},{"id":2893,"key":"_np_product_schedule_custom_text_padding_bottom","value":""},{"id":2894,"key":"_np_product_schedule_custom_text_padding_left","value":""},{"id":2895,"key":"_enable_pos_sticker","value":""},{"id":2896,"key":"_pos_sticker_pos","value":""},{"id":2897,"key":"pos_sticker_left_right","value":""},{"id":2898,"key":"pos_sticker_top","value":""},{"id":2899,"key":"_pos_product_option","value":"image"},{"id":2900,"key":"pos_sticker_image_width","value":""},{"id":2901,"key":"pos_sticker_image_height","value":""},{"id":2902,"key":"_pos_product_custom_text","value":""},{"id":2903,"key":"_pos_sticker_type","value":"ribbon"},{"id":2904,"key":"_pos_product_custom_text_fontcolor","value":"#ffffff"},{"id":2905,"key":"_pos_product_custom_text_backcolor","value":""},{"id":2906,"key":"_pos_product_custom_text_padding_top","value":""},{"id":2907,"key":"_pos_product_custom_text_padding_right","value":""},{"id":2908,"key":"_pos_product_custom_text_padding_bottom","value":""},{"id":2909,"key":"_pos_product_custom_text_padding_left","value":""},{"id":2910,"key":"_pos_sticker_custom_id","value":"0"},{"id":2911,"key":"pos_sticker_rotate","value":""},{"id":2912,"key":"pos_sticker_animation_type","value":"none"},{"id":2913,"key":"pos_sticker_animation_direction","value":""},{"id":2914,"key":"pos_sticker_animation_scale","value":""},{"id":2915,"key":"pos_sticker_animation_iteration_count","value":""},{"id":2916,"key":"pos_sticker_animation_delay","value":""},{"id":2917,"key":"_enable_pos_product_schedule_sticker","value":"no"},{"id":2918,"key":"_pos_product_schedule_start_sticker_date_time","value":""},{"id":2919,"key":"_pos_product_schedule_end_sticker_date_time","value":""},{"id":2920,"key":"_pos_product_schedule_option","value":"image_schedule"},{"id":2921,"key":"pos_schedule_sticker_image_width","value":""},{"id":2922,"key":"pos_schedule_sticker_image_height","value":""},{"id":2923,"key":"_pos_schedule_sticker_custom_id","value":"0"},{"id":2924,"key":"_pos_schedule_product_custom_text","value":""},{"id":2925,"key":"_pos_schedule_sticker_type","value":""},{"id":2926,"key":"_pos_schedule_product_custom_text_fontcolor","value":"#ffffff"},{"id":2927,"key":"_pos_schedule_product_custom_text_backcolor","value":""},{"id":2928,"key":"_pos_schedule_product_custom_text_padding_top","value":""},{"id":2929,"key":"_pos_product_schedule_custom_text_padding_right","value":""},{"id":2930,"key":"_pos_product_schedule_custom_text_padding_bottom","value":""},{"id":2931,"key":"_pos_product_schedule_custom_text_padding_left","value":""},{"id":2932,"key":"_enable_sop_sticker","value":""},{"id":2933,"key":"_sop_sticker_pos","value":""},{"id":2934,"key":"sop_sticker_left_right","value":""},{"id":2935,"key":"sop_sticker_top","value":""},{"id":2936,"key":"_sop_product_option","value":"image"},{"id":2937,"key":"sop_sticker_image_width","value":""},{"id":2938,"key":"sop_sticker_image_height","value":""},{"id":2939,"key":"_sop_product_custom_text","value":""},{"id":2940,"key":"_sop_sticker_type","value":"ribbon"},{"id":2941,"key":"_sop_product_custom_text_fontcolor","value":"#ffffff"},{"id":2942,"key":"_sop_product_custom_text_backcolor","value":""},{"id":2943,"key":"_sop_product_custom_text_padding_top","value":""},{"id":2944,"key":"_sop_product_custom_text_padding_right","value":""},{"id":2945,"key":"_sop_product_custom_text_padding_bottom","value":""},{"id":2946,"key":"_sop_product_custom_text_padding_left","value":""},{"id":2947,"key":"_sop_sticker_custom_id","value":"0"},{"id":2948,"key":"sop_sticker_rotate","value":""},{"id":2949,"key":"sop_sticker_animation_type","value":"none"},{"id":2950,"key":"sop_sticker_animation_direction","value":""},{"id":2951,"key":"sop_sticker_animation_scale","value":""},{"id":2952,"key":"sop_sticker_animation_iteration_count","value":""},{"id":2953,"key":"sop_sticker_animation_delay","value":""},{"id":2954,"key":"_enable_sop_product_schedule_sticker","value":"no"},{"id":2955,"key":"_sop_product_schedule_start_sticker_date_time","value":""},{"id":2956,"key":"_sop_product_schedule_end_sticker_date_time","value":""},{"id":2957,"key":"_sop_product_schedule_option","value":"image_schedule"},{"id":2958,"key":"sop_schedule_sticker_image_width","value":""},{"id":2959,"key":"sop_schedule_sticker_image_height","value":""},{"id":2960,"key":"_sop_schedule_sticker_custom_id","value":"0"},{"id":2961,"key":"_sop_schedule_product_custom_text","value":""},{"id":2962,"key":"_sop_schedule_sticker_type","value":""},{"id":2963,"key":"_sop_schedule_product_custom_text_fontcolor","value":"#ffffff"},{"id":2964,"key":"_sop_schedule_product_custom_text_backcolor","value":""},{"id":2965,"key":"_sop_schedule_product_custom_text_padding_top","value":""},{"id":2966,"key":"_sop_product_schedule_custom_text_padding_right","value":""},{"id":2967,"key":"_sop_product_schedule_custom_text_padding_bottom","value":""},{"id":2968,"key":"_sop_product_schedule_custom_text_padding_left","value":""},{"id":2969,"key":"_enable_cust_sticker","value":""},{"id":2970,"key":"_cust_sticker_pos","value":""},{"id":2971,"key":"cust_sticker_left_right","value":""},{"id":2972,"key":"cust_sticker_top","value":""},{"id":2973,"key":"_cust_product_option","value":"image"},{"id":2974,"key":"cust_sticker_image_width","value":""},{"id":2975,"key":"cust_sticker_image_height","value":""},{"id":2976,"key":"_cust_product_custom_text","value":""},{"id":2977,"key":"_cust_sticker_type","value":"ribbon"},{"id":2978,"key":"_cust_product_custom_text_fontcolor","value":"#ffffff"},{"id":2979,"key":"_cust_product_custom_text_backcolor","value":""},{"id":2980,"key":"_cust_product_custom_text_padding_top","value":""},{"id":2981,"key":"_cust_product_custom_text_padding_right","value":""},{"id":2982,"key":"_cust_product_custom_text_padding_bottom","value":""},{"id":2983,"key":"_cust_product_custom_text_padding_left","value":""},{"id":2984,"key":"_cust_sticker_custom_id","value":"0"},{"id":2985,"key":"cust_sticker_rotate","value":""},{"id":2986,"key":"cust_sticker_animation_type","value":"none"},{"id":2987,"key":"cust_sticker_animation_direction","value":""},{"id":2988,"key":"cust_sticker_animation_scale","value":""},{"id":2989,"key":"cust_sticker_animation_iteration_count","value":""},{"id":2990,"key":"cust_sticker_animation_delay","value":""},{"id":2991,"key":"_enable_cust_product_schedule_sticker","value":"no"},{"id":2992,"key":"_cust_product_schedule_start_sticker_date_time","value":""},{"id":2993,"key":"_cust_product_schedule_end_sticker_date_time","value":""},{"id":2994,"key":"_cust_product_schedule_option","value":"image_schedule"},{"id":2995,"key":"cust_schedule_sticker_image_width","value":""},{"id":2996,"key":"cust_schedule_sticker_image_height","value":""},{"id":2997,"key":"_cust_schedule_sticker_custom_id","value":"0"},{"id":2998,"key":"_cust_schedule_product_custom_text","value":""},{"id":2999,"key":"_cust_schedule_sticker_type","value":""},{"id":3000,"key":"_cust_schedule_product_custom_text_fontcolor","value":"#ffffff"},{"id":3001,"key":"_cust_schedule_product_custom_text_backcolor","value":""},{"id":3002,"key":"_cust_schedule_product_custom_text_padding_top","value":""},{"id":3003,"key":"_cust_product_schedule_custom_text_padding_right","value":""},{"id":3004,"key":"_cust_product_schedule_custom_text_padding_bottom","value":""},{"id":3005,"key":"_cust_product_schedule_custom_text_padding_left","value":""},{"id":3006,"key":"site-sidebar-layout","value":"default"},{"id":3008,"key":"ast-site-content-layout","value":"default"},{"id":3009,"key":"site-content-style","value":"default"},{"id":3010,"key":"site-sidebar-style","value":"default"},{"id":3011,"key":"theme-transparent-header-meta","value":"default"},{"id":3012,"key":"astra-migrate-meta-layouts","value":"set"}],"parent_id":0,"permalink":"https://domain-plugins-test.projectbeta.biz/product/premium-cotton-t-shirt/","tax_class":"","attributes":[],"backorders":"no","categories":[{"id":18,"name":"Uncategorized","slug":"uncategorized"}],"dimensions":{"width":"","height":"","length":""},"menu_order":0,"price_html":"<del aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#8377;</span>350.00</bdi></span></del> <span class=\"screen-reader-text\">Original price was: &#8377;350.00.</span><ins aria-hidden=\"true\"><span class=\"woocommerce-Price-amount amount\"><bdi><span class=\"woocommerce-Price-currencySymbol\">&#8377;</span>300.00</bdi></span></ins><span class=\"screen-reader-text\">Current price is: &#8377;300.00.</span>","sale_price":"300","tax_status":"taxable","upsell_ids":[],"variations":[],"backordered":false,"button_text":"","description":"<p>&lt;p&gt;High-quality premium cotton t-shirt. Soft, breathable, and durable.&lt;/p&gt;</p>\n","has_options":false,"purchasable":true,"related_ids":[436,437,311,435,313],"total_sales":0,"date_created":"2025-12-31T17:47:59","downloadable":false,"external_url":"","manage_stock":false,"rating_count":0,"stock_status":"instock","date_modified":"2025-12-31T17:47:59","post_password":"","purchase_note":"","regular_price":"350","average_rating":"0.00","cross_sell_ids":[],"download_limit":-1,"shipping_class":"","stock_quantity":null,"date_on_sale_to":null,"download_expiry":-1,"reviews_allowed":true,"date_created_gmt":"2025-12-31T12:17:59","global_unique_id":"","grouped_products":[],"low_stock_amount":null,"shipping_taxable":true,"date_modified_gmt":"2025-12-31T12:17:59","date_on_sale_from":null,"shipping_class_id":0,"shipping_required":true,"short_description":"","sold_individually":false,"backorders_allowed":false,"catalog_visibility":"visible","default_attributes":[],"date_on_sale_to_gmt":null,"date_on_sale_from_gmt":null}}]},"settings":{"executionOrder":"v1"},"versionId":"3be8f1a2-40bb-453e-9eae-c995b48b3b64","connections":{"Format Sale Entry":{"main":[[{"node":"Log to Google Sheets","type":"main","index":0}]]},"Format Refund Entry":{"main":[[{"node":"Log to Google Sheets","type":"main","index":0}]]},"Merge Platform Data":{"main":[[{"node":"Format Transaction Data","type":"main","index":0}]]},"Shopify Order Events":{"main":[[{"node":"Shopify Configuration","type":"main","index":0}]]},"Shopify Configuration":{"main":[[{"node":"Merge Platform Data","type":"main","index":0}]]},"Check Transaction Type":{"main":[[{"node":"Format Sale Entry","type":"main","index":0}],[{"node":"Format Refund Entry","type":"main","index":0}]]},"Format Transaction Data":{"main":[[{"node":"Check Transaction Type","type":"main","index":0}]]},"WooCommerce Order Events":{"main":[[{"node":"WooCommerce Configuration","type":"main","index":0}]]},"WooCommerce Configuration":{"main":[[{"node":"Merge Platform Data","type":"main","index":1}]]}}},"lastUpdatedBy":1,"workflowInfo":{"nodeCount":14,"nodeTypes":{"n8n-nodes-base.if":{"count":1},"n8n-nodes-base.set":{"count":5},"n8n-nodes-base.merge":{"count":1},"n8n-nodes-base.stickyNote":{"count":4},"n8n-nodes-base.googleSheets":{"count":1},"n8n-nodes-base.shopifyTrigger":{"count":1},"n8n-nodes-base.wooCommerceTrigger":{"count":1}}},"status":"published","readyToDemo":null,"user":{"name":"WeblineIndia","username":"weblineindia","bio":"A Leading Software Engineering, Consulting & Outsourcing Services Company in USA & India serving Clients Globally since 1999.","verified":true,"links":["https://www.weblineindia.com/hire-n8n-developers/"],"avatar":"https://gravatar.com/avatar/a229d43aefca4588581583c58bb37b4773aebbdf4c1fef86a08bb1d38eae91fa?r=pg&d=retro&size=200"},"nodes":[{"id":18,"icon":"file:googleSheets.svg","name":"n8n-nodes-base.googleSheets","codex":{"data":{"alias":["CSV","Sheet","Spreadsheet","GS"],"resources":{"generic":[{"url":"https://n8n.io/blog/love-at-first-sight-ricardos-n8n-journey/","icon":"❤️","label":"Love at first sight: Ricardo’s n8n journey"},{"url":"https://n8n.io/blog/why-business-process-automation-with-n8n-can-change-your-daily-life/","icon":"🧬","label":"Why business process automation with n8n can change your daily life"},{"url":"https://n8n.io/blog/automatically-adding-expense-receipts-to-google-sheets-with-telegram-mindee-twilio-and-n8n/","icon":"🧾","label":"Automatically Adding Expense Receipts to Google Sheets with Telegram, Mindee, Twilio, and n8n"},{"url":"https://n8n.io/blog/supercharging-your-conference-registration-process-with-n8n/","icon":"🎫","label":"Supercharging your conference registration process with n8n"},{"url":"https://n8n.io/blog/creating-triggers-for-n8n-workflows-using-polling/","icon":"⏲","label":"Creating triggers for n8n workflows using polling"},{"url":"https://n8n.io/blog/no-code-ecommerce-workflow-automations/","icon":"store","label":"6 e-commerce workflows to power up your Shopify s"},{"url":"https://n8n.io/blog/migrating-community-metrics-to-orbit-using-n8n/","icon":"📈","label":"Migrating Community Metrics to Orbit using n8n"},{"url":"https://n8n.io/blog/automate-google-apps-for-productivity/","icon":"💡","label":"15 Google apps you can combine and automate to increase productivity"},{"url":"https://n8n.io/blog/your-business-doesnt-need-you-to-operate/","icon":" 🖥️","label":"Hey founders! Your business doesn't need you to operate"},{"url":"https://n8n.io/blog/how-honest-burgers-use-automation-to-save-100k-per-year/","icon":"🍔","label":"How Honest Burgers Use Automation to Save $100k per year"},{"url":"https://n8n.io/blog/how-a-digital-strategist-uses-n8n-for-online-marketing/","icon":"💻","label":"How a digital strategist uses n8n for online marketing"},{"url":"https://n8n.io/blog/why-this-product-manager-loves-workflow-automation-with-n8n/","icon":"🧠","label":"Why this Product Manager loves workflow automation with n8n"},{"url":"https://n8n.io/blog/sending-automated-congratulations-with-google-sheets-twilio-and-n8n/","icon":"🙌","label":"Sending Automated Congratulations with Google Sheets, Twilio, and n8n "},{"url":"https://n8n.io/blog/how-a-membership-development-manager-automates-his-work-and-investments/","icon":"📈","label":"How a Membership Development Manager automates his work and investments"},{"url":"https://n8n.io/blog/aws-workflow-automation/","label":"7 no-code workflow automations for Amazon Web Services"}],"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googlesheets/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/google/oauth-single-service/"}]},"categories":["Data & Storage","Productivity"],"nodeVersion":"1.0","codexVersion":"1.0"}},"group":"[\"input\",\"output\"]","defaults":{"name":"Google Sheets"},"iconData":{"type":"file","fileBuffer":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxwYXRoIGZpbGw9IiMyOEI0NDYiIGQ9Ik0zNS42OSAxIDUyIDE3LjIyNXYzOS4wODdhMy42NyAzLjY3IDAgMCAxLTEuMDg0IDIuNjFBMy43IDMuNyAwIDAgMSA0OC4yOTMgNjBIMTIuNzA3YTMuNyAzLjcgMCAwIDEtMi42MjMtMS4wNzhBMy42NyAzLjY3IDAgMCAxIDkgNTYuMzEyVjQuNjg4YTMuNjcgMy42NyAwIDAgMSAxLjA4NC0yLjYxQTMuNyAzLjcgMCAwIDEgMTIuNzA3IDF6Ii8+PHBhdGggZmlsbD0iIzZBQ0U3QyIgZD0iTTM1LjY5IDEgNTIgMTcuMjI1SDM5LjM5N2MtMi4wNTQgMC0zLjcwNy0xLjgyOS0zLjcwNy0zLjg3MnoiLz48cGF0aCBmaWxsPSIjMjE5QjM4IiBkPSJNMzkuMjExIDE3LjIyNSA1MiAyMi40OHYtNS4yNTV6Ii8+PHBhdGggZmlsbD0iI0ZGRiIgZD0iTTIwLjEyIDMxLjk3NWMwLS44MTcuNjYyLTEuNDc1IDEuNDgzLTEuNDc1aDE3Ljc5NGMuODIxIDAgMS40ODIuNjU4IDEuNDgyIDEuNDc1djE1LjQ4N2MwIC44MTgtLjY2MSAxLjQ3NS0xLjQ4MiAxLjQ3NUgyMS42MDNhMS40NzYgMS40NzYgMCAwIDEtMS40ODItMS40NzRWMzEuOTc0em0yLjIyNSAxLjQ3NWg2LjY3MnYyLjIxMmgtNi42NzJ6bTAgNS4xNjJoNi42NzJ2Mi4yMTNoLTYuNjcyem0wIDUuMTYzaDYuNjcydjIuMjEyaC02LjY3MnptOS42MzgtMTAuMzI1aDYuNjcydjIuMjEyaC02LjY3MnptMCA1LjE2Mmg2LjY3MnYyLjIxM2gtNi42NzJ6bTAgNS4xNjNoNi42NzJ2Mi4yMTJoLTYuNjcyeiIvPjxwYXRoIGZpbGw9IiMyOEI0NDYiIGQ9Ik0zNC42OSAwIDUxIDE2LjIyNXYzOS4wODdhMy42NyAzLjY3IDAgMCAxLTEuMDg0IDIuNjFBMy43IDMuNyAwIDAgMSA0Ny4yOTMgNTlIMTEuNzA3YTMuNyAzLjcgMCAwIDEtMi42MjMtMS4wNzhBMy42NyAzLjY3IDAgMCAxIDggNTUuMzEyVjMuNjg4YTMuNjcgMy42NyAwIDAgMSAxLjA4NC0yLjYxQTMuNyAzLjcgMCAwIDEgMTEuNzA3IDB6Ii8+PHBhdGggZmlsbD0iIzZBQ0U3QyIgZD0iTTM0LjY5IDAgNTEgMTYuMjI1SDM4LjM5N2MtMi4wNTQgMC0zLjcwNy0xLjgyOS0zLjcwNy0zLjg3MnoiLz48cGF0aCBmaWxsPSIjMjE5QjM4IiBkPSJNMzguMjExIDE2LjIyNSA1MSAyMS40OHYtNS4yNTV6Ii8+PHBhdGggZmlsbD0iI0ZGRiIgZD0iTTE5LjEyIDMwLjk3NWMwLS44MTcuNjYyLTEuNDc1IDEuNDgzLTEuNDc1aDE3Ljc5NGMuODIxIDAgMS40ODIuNjU4IDEuNDgyIDEuNDc1djE1LjQ4N2MwIC44MTgtLjY2MSAxLjQ3NS0xLjQ4MiAxLjQ3NUgyMC42MDNhMS40NzYgMS40NzYgMCAwIDEtMS40ODItMS40NzRWMzAuOTc0em0yLjIyNSAxLjQ3NWg2LjY3MnYyLjIxMmgtNi42NzJ6bTAgNS4xNjJoNi42NzJ2Mi4yMTNoLTYuNjcyem0wIDUuMTYzaDYuNjcydjIuMjEyaC02LjY3MnptOS42MzgtMTAuMzI1aDYuNjcydjIuMjEyaC02LjY3MnptMCA1LjE2Mmg2LjY3MnYyLjIxM2gtNi42NzJ6bTAgNS4xNjNoNi42NzJ2Mi4yMTJoLTYuNjcyeiIvPjwvZz48L3N2Zz4="},"displayName":"Google Sheets","typeVersion":5,"nodeCategories":[{"id":3,"name":"Data & Storage"},{"id":4,"name":"Productivity"}]},{"id":20,"icon":"fa:map-signs","name":"n8n-nodes-base.if","codex":{"data":{"alias":["Router","Filter","Condition","Logic","Boolean","Branch"],"details":"The IF node can be used to implement binary conditional logic in your workflow. You can set up one-to-many conditions to evaluate each item of data being inputted into the node. That data will either evaluate to TRUE or FALSE and route out of the node accordingly.\n\nThis node has multiple types of conditions: Bool, String, Number, and Date & Time.","resources":{"generic":[{"url":"https://n8n.io/blog/learn-to-automate-your-factorys-incident-reporting-a-step-by-step-guide/","icon":"🏭","label":"Learn to Automate Your Factory's Incident Reporting: A Step by Step Guide"},{"url":"https://n8n.io/blog/2021-the-year-to-automate-the-new-you-with-n8n/","icon":"☀️","label":"2021: The Year to Automate the New You with n8n"},{"url":"https://n8n.io/blog/why-business-process-automation-with-n8n-can-change-your-daily-life/","icon":"🧬","label":"Why business process automation with n8n can change your daily life"},{"url":"https://n8n.io/blog/create-a-toxic-language-detector-for-telegram/","icon":"🤬","label":"Create a toxic language detector for Telegram in 4 step"},{"url":"https://n8n.io/blog/no-code-ecommerce-workflow-automations/","icon":"store","label":"6 e-commerce workflows to power up your Shopify s"},{"url":"https://n8n.io/blog/how-to-build-a-low-code-self-hosted-url-shortener/","icon":"🔗","label":"How to build a low-code, self-hosted URL shortener in 3 steps"},{"url":"https://n8n.io/blog/automate-your-data-processing-pipeline-in-9-steps-with-n8n/","icon":"⚙️","label":"Automate your data processing pipeline in 9 steps"},{"url":"https://n8n.io/blog/how-to-get-started-with-crm-automation-and-no-code-workflow-ideas/","icon":"👥","label":"How to get started with CRM automation (with 3 no-code workflow ideas"},{"url":"https://n8n.io/blog/5-tasks-you-can-automate-with-notion-api/","icon":"⚡️","label":"5 tasks you can automate with the new Notion API "},{"url":"https://n8n.io/blog/automate-google-apps-for-productivity/","icon":"💡","label":"15 Google apps you can combine and automate to increase productivity"},{"url":"https://n8n.io/blog/automation-for-maintainers-of-open-source-projects/","icon":"🏷️","label":"How to automatically manage contributions to open-source projects"},{"url":"https://n8n.io/blog/how-uproc-scraped-a-multi-page-website-with-a-low-code-workflow/","icon":" 🕸️","label":"How uProc scraped a multi-page website with a low-code workflow"},{"url":"https://n8n.io/blog/5-workflow-automations-for-mattermost-that-we-love-at-n8n/","icon":"🤖","label":"5 workflow automations for Mattermost that we love at n8n"},{"url":"https://n8n.io/blog/why-this-product-manager-loves-workflow-automation-with-n8n/","icon":"🧠","label":"Why this Product Manager loves workflow automation with n8n"},{"url":"https://n8n.io/blog/sending-automated-congratulations-with-google-sheets-twilio-and-n8n/","icon":"🙌","label":"Sending Automated Congratulations with Google Sheets, Twilio, and n8n "},{"url":"https://n8n.io/blog/how-to-set-up-a-ci-cd-pipeline-with-no-code/","icon":"🎡","label":"How to set up a no-code CI/CD pipeline with GitHub and TravisCI"},{"url":"https://n8n.io/blog/benefits-of-automation-and-n8n-an-interview-with-hubspots-hugh-durkin/","icon":"🎖","label":"Benefits of automation and n8n: An interview with HubSpot's Hugh Durkin"},{"url":"https://n8n.io/blog/aws-workflow-automation/","label":"7 no-code workflow automations for Amazon Web Services"}],"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.if/"}]},"categories":["Core Nodes"],"nodeVersion":"1.0","codexVersion":"1.0","subcategories":{"Core Nodes":["Flow"]}}},"group":"[\"transform\"]","defaults":{"name":"If","color":"#408000"},"iconData":{"icon":"map-signs","type":"icon"},"displayName":"If","typeVersion":2,"nodeCategories":[{"id":9,"name":"Core Nodes"}]},{"id":24,"icon":"file:merge.svg","name":"n8n-nodes-base.merge","codex":{"data":{"alias":["Join","Concatenate","Wait"],"resources":{"generic":[{"url":"https://n8n.io/blog/how-to-sync-data-between-two-systems/","icon":"🏬","label":"How to synchronize data between two systems (one-way vs. two-way sync"},{"url":"https://n8n.io/blog/supercharging-your-conference-registration-process-with-n8n/","icon":"🎫","label":"Supercharging your conference registration process with n8n"},{"url":"https://n8n.io/blog/migrating-community-metrics-to-orbit-using-n8n/","icon":"📈","label":"Migrating Community Metrics to Orbit using n8n"},{"url":"https://n8n.io/blog/build-your-own-virtual-assistant-with-n8n-a-step-by-step-guide/","icon":"👦","label":"Build your own virtual assistant with n8n: A step by step guide"},{"url":"https://n8n.io/blog/sending-automated-congratulations-with-google-sheets-twilio-and-n8n/","icon":"🙌","label":"Sending Automated Congratulations with Google Sheets, Twilio, and n8n "},{"url":"https://n8n.io/blog/aws-workflow-automation/","label":"7 no-code workflow automations for Amazon Web Services"}],"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.merge/"}]},"categories":["Core Nodes"],"nodeVersion":"1.0","codexVersion":"1.0","subcategories":{"Core Nodes":["Flow","Data Transformation"]}}},"group":"[\"transform\"]","defaults":{"name":"Merge"},"iconData":{"type":"file","fileBuffer":"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgdmlld0JveD0iMCAwIDUxMiA1MTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMF8xMTc3XzUxOCkiPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTAgNDhDMCAyMS40OTAzIDIxLjQ5MDMgMCA0OCAwSDExMkMxMzguNTEgMCAxNjAgMjEuNDkwMyAxNjAgNDhWNTZIMTk2LjI1MkMyNDAuNDM1IDU2IDI3Ni4yNTIgOTEuODE3MiAyNzYuMjUyIDEzNlYxOTJDMjc2LjI1MiAyMTQuMDkxIDI5NC4xNjEgMjMyIDMxNi4yNTIgMjMySDM1MlYyMjRDMzUyIDE5Ny40OSAzNzMuNDkgMTc2IDQwMCAxNzZINDY0QzQ5MC41MSAxNzYgNTEyIDE5Ny40OSA1MTIgMjI0VjI4OEM1MTIgMzE0LjUxIDQ5MC41MSAzMzYgNDY0IDMzNkg0MDBDMzczLjQ5IDMzNiAzNTIgMzE0LjUxIDM1MiAyODhWMjgwSDMxNi4yNTJDMjk0LjE2MSAyODAgMjc2LjI1MiAyOTcuOTA5IDI3Ni4yNTIgMzIwVjM3NkMyNzYuMjUyIDQyMC4xODMgMjQwLjQzNSA0NTYgMTk2LjI1MiA0NTZIMTYwVjQ2NEMxNjAgNDkwLjUxIDEzOC41MSA1MTIgMTEyIDUxMkg0OEMyMS40OTAzIDUxMiAwIDQ5MC41MSAwIDQ2NFY0MDBDMCAzNzMuNDkgMjEuNDkwMyAzNTIgNDggMzUySDExMkMxMzguNTEgMzUyIDE2MCAzNzMuNDkgMTYwIDQwMFY0MDhIMTk2LjI1MkMyMTMuOTI1IDQwOCAyMjguMjUyIDM5My42NzMgMjI4LjI1MiAzNzZWMzIwQzIyOC4yNTIgMjk0Ljc4NCAyMzguODU5IDI3Mi4wNDQgMjU1Ljg1MyAyNTZDMjM4Ljg1OSAyMzkuOTU2IDIyOC4yNTIgMjE3LjIxNiAyMjguMjUyIDE5MlYxMzZDMjI4LjI1MiAxMTguMzI3IDIxMy45MjUgMTA0IDE5Ni4yNTIgMTA0SDE2MFYxMTJDMTYwIDEzOC41MSAxMzguNTEgMTYwIDExMiAxNjBINDhDMjEuNDkwMyAxNjAgMCAxMzguNTEgMCAxMTJWNDhaTTEwNCA0OEMxMDguNDE4IDQ4IDExMiA1MS41ODE3IDExMiA1NlYxMDRDMTEyIDEwOC40MTggMTA4LjQxOCAxMTIgMTA0IDExMkg1NkM1MS41ODE3IDExMiA0OCAxMDguNDE4IDQ4IDEwNFY1NkM0OCA1MS41ODE3IDUxLjU4MTcgNDggNTYgNDhIMTA0Wk00NTYgMjI0QzQ2MC40MTggMjI0IDQ2NCAyMjcuNTgyIDQ2NCAyMzJWMjgwQzQ2NCAyODQuNDE4IDQ2MC40MTggMjg4IDQ1NiAyODhINDA4QzQwMy41ODIgMjg4IDQwMCAyODQuNDE4IDQwMCAyODBWMjMyQzQwMCAyMjcuNTgyIDQwMy41ODIgMjI0IDQwOCAyMjRINDU2Wk0xMTIgNDA4QzExMiA0MDMuNTgyIDEwOC40MTggNDAwIDEwNCA0MDBINTZDNTEuNTgxNyA0MDAgNDggNDAzLjU4MiA0OCA0MDhWNDU2QzQ4IDQ2MC40MTggNTEuNTgxNyA0NjQgNTYgNDY0SDEwNEMxMDguNDE4IDQ2NCAxMTIgNDYwLjQxOCAxMTIgNDU2VjQwOFoiIGZpbGw9IiM1NEI4QzkiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8xMTc3XzUxOCI+CjxyZWN0IHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo="},"displayName":"Merge","typeVersion":3,"nodeCategories":[{"id":9,"name":"Core Nodes"}]},{"id":38,"icon":"fa:pen","name":"n8n-nodes-base.set","codex":{"data":{"alias":["Set","JS","JSON","Filter","Transform","Map"],"resources":{"generic":[{"url":"https://n8n.io/blog/learn-to-automate-your-factorys-incident-reporting-a-step-by-step-guide/","icon":"🏭","label":"Learn to Automate Your Factory's Incident Reporting: A Step by Step Guide"},{"url":"https://n8n.io/blog/2021-the-year-to-automate-the-new-you-with-n8n/","icon":"☀️","label":"2021: The Year to Automate the New You with n8n"},{"url":"https://n8n.io/blog/automatically-pulling-and-visualizing-data-with-n8n/","icon":"📈","label":"Automatically pulling and visualizing data with n8n"},{"url":"https://n8n.io/blog/database-monitoring-and-alerting-with-n8n/","icon":"📡","label":"Database Monitoring and Alerting with n8n"},{"url":"https://n8n.io/blog/automatically-adding-expense-receipts-to-google-sheets-with-telegram-mindee-twilio-and-n8n/","icon":"🧾","label":"Automatically Adding Expense Receipts to Google Sheets with Telegram, Mindee, Twilio, and n8n"},{"url":"https://n8n.io/blog/no-code-ecommerce-workflow-automations/","icon":"store","label":"6 e-commerce workflows to power up your Shopify s"},{"url":"https://n8n.io/blog/how-to-build-a-low-code-self-hosted-url-shortener/","icon":"🔗","label":"How to build a low-code, self-hosted URL shortener in 3 steps"},{"url":"https://n8n.io/blog/automate-your-data-processing-pipeline-in-9-steps-with-n8n/","icon":"⚙️","label":"Automate your data processing pipeline in 9 steps"},{"url":"https://n8n.io/blog/how-to-get-started-with-crm-automation-and-no-code-workflow-ideas/","icon":"👥","label":"How to get started with CRM automation (with 3 no-code workflow ideas"},{"url":"https://n8n.io/blog/5-tasks-you-can-automate-with-notion-api/","icon":"⚡️","label":"5 tasks you can automate with the new Notion API "},{"url":"https://n8n.io/blog/automate-google-apps-for-productivity/","icon":"💡","label":"15 Google apps you can combine and automate to increase productivity"},{"url":"https://n8n.io/blog/how-uproc-scraped-a-multi-page-website-with-a-low-code-workflow/","icon":" 🕸️","label":"How uProc scraped a multi-page website with a low-code workflow"},{"url":"https://n8n.io/blog/building-an-expense-tracking-app-in-10-minutes/","icon":"📱","label":"Building an expense tracking app in 10 minutes"},{"url":"https://n8n.io/blog/the-ultimate-guide-to-automate-your-video-collaboration-with-whereby-mattermost-and-n8n/","icon":"📹","label":"The ultimate guide to automate your video collaboration with Whereby, Mattermost, and n8n"},{"url":"https://n8n.io/blog/5-workflow-automations-for-mattermost-that-we-love-at-n8n/","icon":"🤖","label":"5 workflow automations for Mattermost that we love at n8n"},{"url":"https://n8n.io/blog/learn-to-build-powerful-api-endpoints-using-webhooks/","icon":"🧰","label":"Learn to Build Powerful API Endpoints Using Webhooks"},{"url":"https://n8n.io/blog/how-a-membership-development-manager-automates-his-work-and-investments/","icon":"📈","label":"How a Membership Development Manager automates his work and investments"},{"url":"https://n8n.io/blog/a-low-code-bitcoin-ticker-built-with-questdb-and-n8n-io/","icon":"📈","label":"A low-code bitcoin ticker built with QuestDB and n8n.io"},{"url":"https://n8n.io/blog/how-to-set-up-a-ci-cd-pipeline-with-no-code/","icon":"🎡","label":"How to set up a no-code CI/CD pipeline with GitHub and TravisCI"},{"url":"https://n8n.io/blog/benefits-of-automation-and-n8n-an-interview-with-hubspots-hugh-durkin/","icon":"🎖","label":"Benefits of automation and n8n: An interview with HubSpot's Hugh Durkin"},{"url":"https://n8n.io/blog/how-goomer-automated-their-operations-with-over-200-n8n-workflows/","icon":"🛵","label":"How Goomer automated their operations with over 200 n8n workflows"},{"url":"https://n8n.io/blog/aws-workflow-automation/","label":"7 no-code workflow automations for Amazon Web Services"}],"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.set/"}]},"categories":["Core Nodes"],"nodeVersion":"1.0","codexVersion":"1.0","subcategories":{"Core Nodes":["Data Transformation"]}}},"group":"[\"input\"]","defaults":{"name":"Edit Fields"},"iconData":{"icon":"pen","type":"icon"},"displayName":"Edit Fields (Set)","typeVersion":3,"nodeCategories":[{"id":9,"name":"Core Nodes"}]},{"id":107,"icon":"file:shopify.svg","name":"n8n-nodes-base.shopifyTrigger","codex":{"data":{"resources":{"generic":[{"url":"https://n8n.io/blog/no-code-ecommerce-workflow-automations/","icon":"store","label":"6 e-commerce workflows to power up your Shopify s"}],"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.shopifytrigger/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/shopify/"}]},"categories":["Sales"],"nodeVersion":"1.0","codexVersion":"1.0"}},"group":"[\"trigger\"]","defaults":{"name":"Shopify Trigger"},"iconData":{"type":"file","fileBuffer":"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBmaWxsPSIjZmZmIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHN0cm9rZT0iIzAwMCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiB2aWV3Qm94PSIwIDAgNTggNjYiPjx1c2UgeGxpbms6aHJlZj0iI2EiIHg9Ii41IiB5PSIuNSIvPjxzeW1ib2wgaWQ9ImEiIG92ZXJmbG93PSJ2aXNpYmxlIj48ZyBmaWxsLXJ1bGU9Im5vbnplcm8iIHN0cm9rZT0ibm9uZSI+PHBhdGggZmlsbD0iIzk1YmY0NyIgZD0iTTQ5LjI1NSAxMi40ODRhLjYzLjYzIDAgMCAwLS41NjQtLjUyN2MtLjIyNS0uMDM3LTUuMTctLjM3Ni01LjE3LS4zNzZsLTMuNzctMy43N2MtLjM0LS4zNzYtMS4wOTItLjI2Ni0xLjM3Ni0uMTg4LS4wMzcgMC0uNzUyLjIyNS0xLjkyMi42MDUtMS4xMzctMy4zLTMuMTUtNi4zMDYtNi42OTYtNi4zMDZoLS4zMDNDMjguNDM4LjYwNSAyNy4xOTQgMCAyNi4xNDQgMGMtOC4yNTYuMDM3LTEyLjIgMTAuMzMzLTEzLjQzNCAxNS41OTRsLTUuNzcgMS43N2MtMS43Ny41NjQtMS44MzUuNjA1LTIuMDczIDIuMjkzTDAgNTcuMTc1IDM2LjQ2OCA2NGwxOS43NjMtNC4yNmMwLS4wMzctNi45NC00Ni44OTctNi45NzYtNDcuMjU1ek0zNC40MzEgOC44NmMtLjkxNy4zMDMtMS45NjMuNjA1LTMuMS45NDV2LS42OGExNSAxNSAwIDAgMC0uNzUyLTQuOTk5YzEuODQ4LjI4NCAzLjEgMi4zNTcgMy44NDMgNC43MzN6bS02LjA2OC00LjI5OGMuNjAzIDEuNzc4Ljg4MyAzLjY1LjgyNiA1LjUyN3YuMzRsLTYuMzc1IDEuOTYzYzEuMjQ4LTQuNjYgMy41NS02Ljk2MiA1LjU1LTcuODN6bS0yLjQ1LTIuMjkzYTEuOTQgMS45NCAwIDAgMSAxLjA1NS4zMzljLTIuNjYgMS4yMzgtNS40NzIgNC4zNjYtNi42NzggMTAuNjI3bC01LjA0NSAxLjU0NkMxNi42NjggMTAuMDMgMTkuOTg4IDIuMjYgMjUuOTEgMi4yNnoiLz48cGF0aCBmaWxsPSIjNWU4ZTNlIiBkPSJNNDguNjkxIDExLjk1N2MtLjIyNS0uMDM3LTUuMTctLjM3Ni01LjE3LS4zNzZsLTMuNzctMy43N2EuNzUuNzUgMCAwIDAtLjUyNy0uMjI1TDM2LjQ3MiA2NGwxOS43NjMtNC4yNi02Ljk4LTQ3LjIxOGEuNjguNjggMCAwIDAtLjU2NC0uNTY0eiIvPjxwYXRoIGQ9Im0yOS43NTggMjIuOS0yLjQ1NCA3LjI0MmExMS40IDExLjQgMCAwIDAtNC43NTItMS4xMzNjLTMuODQ4IDAtNC4wMzYgMi40MTItNC4wMzYgMy4wMTggMCAzLjI5OCA4LjYzNiA0LjU2NCA4LjYzNiAxMi4zMzMgMCA2LjEtMy44ODUgMTAuMDMtOS4xIDEwLjAzLTYuMjYgMC05LjQ2Ny0zLjg4NS05LjQ2Ny0zLjg4NWwxLjY2NS01LjU1czMuMjggMi44MyA2LjA3MyAyLjgzYTIuNDcgMi40NyAwIDAgMCAyLjU2NC0yLjQ5YzAtNC4zNC03LjEtNC41MjctNy4xLTExLjYxOCAwLTUuOTYyIDQuMjk4LTExLjc3IDEyLjkzNC0xMS43NyAzLjM5NC4wNSA1LjAxOCAxIDUuMDE4IDF6Ii8+PC9nPjwvc3ltYm9sPjwvc3ZnPg=="},"displayName":"Shopify Trigger","typeVersion":1,"nodeCategories":[{"id":2,"name":"Sales"}]},{"id":235,"icon":"file:wooCommerce.svg","name":"n8n-nodes-base.wooCommerceTrigger","codex":{"data":{"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.woocommercetrigger/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/woocommerce/"}]},"categories":["Sales"],"nodeVersion":"1.0","codexVersion":"1.0"}},"group":"[\"trigger\"]","defaults":{"name":"WooCommerce Trigger"},"iconData":{"type":"file","fileBuffer":"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyOC4yLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAxODMuNiA0Ny41IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAxODMuNiA0Ny41OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7ZmlsbDojODczRUZGO30NCgkuc3Qxe2ZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO30NCgkuc3Qye2ZpbGw6Izg3M0VGRjt9DQoJLnN0M3tmaWxsLXJ1bGU6ZXZlbm9kZDtjbGlwLXJ1bGU6ZXZlbm9kZDtmaWxsOiNGRkZGRkY7fQ0KCS5zdDR7ZmlsbDojRkZGRkZGO30NCjwvc3R5bGU+DQo8Zz4NCgk8cGF0aCBjbGFzcz0ic3QwIiBkPSJNNzcuNCwwYy00LjMsMC03LjEsMS40LTkuNiw2LjFMNTYuNCwyNy42VjguNWMwLTUuNy0yLjctOC41LTcuNy04LjVzLTcuMSwxLjctOS42LDYuNUwyOC4zLDI3LjZWOC43DQoJCWMwLTYuMS0yLjUtOC43LTguNi04LjdINy4zQzIuNiwwLDAsMi4yLDAsNi4yczIuNSw2LjQsNy4xLDYuNGg1LjF2MjQuMWMwLDYuOCw0LjYsMTAuOCwxMS4yLDEwLjhzOS42LTIuNiwxMi45LTguN2w3LjItMTMuNXYxMS40DQoJCWMwLDYuNyw0LjQsMTAuOCwxMS4xLDEwLjhzOS4yLTIuMywxMy04LjdsMTYuNi0yOEM4Ny44LDQuNyw4NS4zLDAsNzcuMywwQzc3LjMsMCw3Ny4zLDAsNzcuNCwweiIvPg0KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0xMDguNiwwQzk1LDAsODQuNywxMC4xLDg0LjcsMjMuOHMxMC40LDIzLjcsMjMuOSwyMy43czIzLjgtMTAuMSwyMy45LTIzLjdDMTMyLjUsMTAuMSwxMjIuMSwwLDEwOC42LDB6DQoJCSBNMTA4LjYsMzIuOWMtNS4xLDAtOC42LTMuOC04LjYtOS4xczMuNS05LjIsOC42LTkuMnM4LjYsMy45LDguNiw5LjJTMTEzLjgsMzIuOSwxMDguNiwzMi45eiIvPg0KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0xNTkuNywwYy0xMy41LDAtMjMuOSwxMC4xLTIzLjksMjMuOHMxMC40LDIzLjcsMjMuOSwyMy43czIzLjktMTAuMSwyMy45LTIzLjdTMTczLjIsMCwxNTkuNywweiBNMTU5LjcsMzIuOQ0KCQljLTUuMiwwLTguNS0zLjgtOC41LTkuMXMzLjQtOS4yLDguNS05LjJzOC42LDMuOSw4LjYsOS4yUzE2NC45LDMyLjksMTU5LjcsMzIuOXoiLz4NCjwvZz4NCjwvc3ZnPg0K"},"displayName":"WooCommerce Trigger","typeVersion":1,"nodeCategories":[{"id":2,"name":"Sales"}]},{"id":565,"icon":"fa:sticky-note","name":"n8n-nodes-base.stickyNote","codex":{"data":{"alias":["Comments","Notes","Sticky"],"categories":["Core Nodes"],"nodeVersion":"1.0","codexVersion":"1.0","subcategories":{"Core Nodes":["Helpers"]}}},"group":"[\"input\"]","defaults":{"name":"Sticky Note","color":"#FFD233"},"iconData":{"icon":"sticky-note","type":"icon"},"displayName":"Sticky Note","typeVersion":1,"nodeCategories":[{"id":9,"name":"Core Nodes"}]}],"categories":[{"id":35,"name":"Document Extraction"}],"image":[]}}