Overview
Manual monitoring of WooCommerce orders wastes time and risks delays. This workflow instantly transforms new "processing" orders into detailed Telegram messages, delivering order info directly to your team’s chat. It eliminates manual checks and accelerates order handling by pushing real-time alerts where your staff already collaborates.
The Impact
- Alert Instantly. Get new order details pushed to Telegram without delay.
- Streamline Responses. Customer service acts fast on fresh orders.
- Monitor Easily. Fulfillment teams catch anomalies in "processing" orders quickly.
- Save Time. No more manual order status checks or data copying.
Who This Is For
- E-commerce Operators who need real-time order visibility in team chats.
- Customer Service Reps handling order verification and shipment coordination.
- Warehouse Managers monitoring order flow and fulfillment status.
- IT Automators integrating WooCommerce with messaging platforms.
How It Works
- Extract Order Status
- Parse the incoming WooCommerce webhook JSON to extract the order's "status" field.
- Check If Processing
- Proceed only if the order status equals "processing"; otherwise, skip notification.
- Format Message
- Compile order details—ID, customer info, amount, date, products, notes—into an HTML-formatted message.
- Send Telegram Message
- Use the Telegram Bot API with your bot token and chat ID to send the formatted order message.
- Aggregate Branches
- Combine all workflow outcomes and terminate cleanly, regardless of notification sent.
What You'll Need
Before using this template, make sure you have:
- A WooCommerce webhook configured to send full order JSON payloads including line items, billing, total, date_created_gmt, and order ID.A Telegram bot API token obtained via BotFather.The Telegram chat ID (group or individual) where notifications should be sent.
How to Use
- Step 1. Configure WooCommerce Webhook
- Step 2. Input WebhookBody
- Step 3. Provide TelegramBotToken
- Step 4. Set ChatId
- Step 5. Verify Execution
Set up an order webhook in WooCommerce to POST full order JSON payloads to this workflow's endpoint on order creation or update.
Paste the raw JSON object received from WooCommerce into the WebhookBody parameter.
Enter your Telegram bot’s API token for authentication.
Fill in the target Telegram chat identifier where order notifications will be sent.
Confirm that new "processing" orders trigger Telegram messages with correct order details in the specified chat.