This is an info Alert.
x402 Logo
  • Product
    • Become Agent-Ready
      • Merchants
        Agentic Commerce — list your store across ChatGPT, Gemini, Claude & Perplexity
      • Publishers
        Monetize your content when AI agents read, cite, or train on it
      • SaaS Companies
        Treat AI agents as first-class customers with agent-priced checkout
    • Monetize
      • Monetize MCP Server
        Charge per call on any MCP server in 2 minutes
      • Monetize AI Agents
        Turn n8n, Zapier, Activepieces workflows into revenue
      • Agent Feed
        Pay-per-query access to licensed publisher content for your agents
  • Resources
    • xpay Ecosystem
      • xpay✦ Tools
        1,000+ pay-per-use tools for your AI agents
      • Agent-Ready SaaS Index
        25,481 SaaS scored on agent-buyability
      • SaaS Pricing Database
        Pricing pages indexed across 1,000+ categories
      • Shopify Apps Directory
        Every Shopify app, with its full review history
      • WooCommerce Plugins Directory
        Every WooCommerce plugin, scored on how well it is maintained
      • GitHub
        Open source repositories
    • Agent Building
      • Agent Frameworks
        AI frameworks for building multi-agent systems
      • x402 Integration
        AI frameworks with x402 payment integration
      • Networks
        Blockchain networks supporting x402
    • Company
      • About xpay✦
        Our mission, products, and protocols
      • Blog
        Latest insights and updates
      • Docs
        Complete xpay documentation
  • Pricing
  • Blog
  • Docs
Get Started
  1. xpay✦ Commerce

  2. Directory

  3. WooCommerce plugins

  4. Webhook For WooCommerce

Webhook For WooCommerce

Send real-time HTTP webhook notifications to any external URL when WooCommerce events occur — orders, payments, customers, stock, and more.

10+ active installsFree on WordPress.org
View on WordPress.orgSupport forum
Will this break my store?

What the WordPress.org registry says about keeping Webhook For WooCommerce running.

WordPress compatibility
Tested to 7.0.2
Tested against the WordPress branch in use today.
Last updated
2 months ago
At least 1.8 releases a year since launch. WordPress.org only lists versions still available for download, so the real number may be higher.
Requires PHP
7.4
Your host must be running at least this version.
Requires WordPress
6.2
Contributors
1
A single maintainer. Worth knowing if the plugin is load-bearing for your store.

10+ active installsWordPress.org reports installs in bands, not exact counts.
Maintenance & trust

Scored on how Webhook For WooCommerce is looked after — not on how many stores run it.

Well maintained
Not enough public feedback to put a confident number on this one. Little public feedback — score rests mostly on release activity. What we can see is below.

Maintenance
35 / 35
Updated 73 days ago.
WordPress compatibility
20 / 20
Tested to WP 7.0.2 (current).
Support responsiveness
Not enough data
Only 0 support thread(s) — not enough to judge.
Merchant satisfaction
Not enough data
No ratings yet.
Listing transparency
10 / 10
Provides: screenshots, description, homepage
2 of 5 measures had too little evidence to score. They are left out of the total rather than counted as zero — otherwise a plugin would be marked down for being small rather than for being poorly kept.Measured 2026-08-01 from the WordPress.org plugin registry.
Ratings

No one has rated this plugin on WordPress.org yet. That is a statement about the ratings page, not about the plugin — plenty of well-kept plugins never collect them.

WebhookX is a lightweight, developer-friendly webhook manager for WordPress and WooCommerce. Create unlimited webhooks that fire automatically when WooCommerce actions happen, and deliver rich JSON payloads to any external endpoint in real time.

Key Features

  • WooCommerce event triggers — Hook into 11+ built-in WooCommerce actions out of the box.
  • Custom delivery URL — Send webhook payloads to any HTTP/HTTPS endpoint.
  • HMAC secret signing — Optionally secure each webhook with a secret key. Requests include an X-WebhookX-Signature header (SHA-256 HMAC) so your endpoint can verify authenticity.
  • Active / Inactive status — Enable or disable individual webhooks without deleting them.
  • Rich JSON payloads — Payloads include full order details (line items, billing, shipping, totals), customer data, product stock info, and more.
  • Bulk delete — Remove multiple webhooks at once from the management table.
  • Webhook delivery logs — Every webhook delivery is automatically logged with status, HTTP response code, response body, payload, and execution duration. Browse, filter, retry, and delete log entries from a dedicated Logs tab.
  • Non-blocking delivery — Webhooks are dispatched asynchronously so they never slow down your storefront.
  • Extendable — Add custom events via the webhookx_woocommerce_events filter.

Supported WooCommerce Events

  • New Order Created
  • Order Status Changed
  • Payment Complete
  • Checkout Order Processed
  • Order Completed
  • Order Cancelled
  • Order Refunded
  • Customer Created
  • Add to Cart
  • Product Stock Updated
  • Product Stock Status Changed

Webhook Payload

Each webhook delivers a JSON POST body. For order events this includes:

  • Order ID, status, currency, totals (subtotal, tax, shipping, grand total)
  • Full billing and shipping address
  • Line items with product ID, name, quantity, and totals
  • Customer ID and email
  • Order creation timestamp

For customer events: customer ID, email, username, first/last name.
For cart events: product ID, name, quantity, variation ID.
For stock events: product ID, name, SKU, stock quantity / status.

Request Headers

Every webhook request includes:

  • Content-Type: application/json
  • X-WebhookX-Event — the WooCommerce action slug that fired
  • X-WebhookX-Delivery — a unique UUID per delivery
  • X-WebhookX-Signature — SHA-256 HMAC signature (only when a secret key is set)

Webhook Logs

Every webhook delivery attempt is recorded in a dedicated Logs tab. Each log entry includes:

  • Status — success, failed, or pending
  • HTTP response code — the status code returned by the remote endpoint
  • Webhook name & event — which webhook fired and what triggered it
  • Delivery URL — the endpoint the payload was sent to
  • Request payload — the full JSON body that was delivered
  • Response body — the raw response returned by the endpoint
  • Duration — how long the delivery took in milliseconds
  • Timestamp — when the delivery was made

From the Logs tab you can:

  • Filter logs by status (All / Success / Failed)
  • View full payload and response details in a modal
  • Retry any individual delivery with one click
  • Delete individual or bulk-selected log entries

Additional Information

For more information and updates, visit the official website https://softtent.com.

License

This plugin is licensed under the GPL-2.0-or-later License.

Does this plugin require WooCommerce?

Yes. WebhookX is designed to trigger webhooks based on WooCommerce events. WooCommerce must be installed and active for webhooks to fire.

How do I verify the webhook came from my site?

Set a Secret Key when creating a webhook. Each request will include an X-WebhookX-Signature header containing sha256=<hmac>. Compute hash_hmac('sha256', $raw_body, $secret) on your server and compare it to the header value.

Can I add my own custom events?

Yes. Use the webhookx_woocommerce_events filter to add your own event slugs to the event list in the UI. You are responsible for hooking the corresponding WordPress/WooCommerce action.

How do I temporarily stop a webhook without deleting it?

Edit the webhook and set its Status to Inactive. It will be ignored until you re-activate it.

Where are webhook delivery logs stored?

Logs are stored in a custom database table ({prefix}webhookx_logs). You can view all logs under the Logs tab in the WebhookX admin screen. Logs are created automatically for every delivery attempt — whether it succeeds or fails.

Can I retry a failed webhook delivery?

Yes. In the Logs tab, click the ⋮ actions menu next to any log entry and choose Retry. The plugin will re-dispatch the original payload to the same endpoint immediately. You will be notified whether the retry succeeded or received a non-2xx response.

Where can I find documentation?

For detailed documentation, visit https://softtent.com.

Need Any Help?

Please mail us at contact@softtent.com

Categories
Workflow automationEmail & SMS
Plugin details
Version0.1.2
Last updated2026-05-20 8:36am GMT
Added2024-11-16
Requires WordPress6.2
Tested up to7.0.2
Requires PHP7.4

Tags on WordPress.org
automation
http
notification
webhook
woocommerce
Alternatives
Other plugins in the same categories.
Bit integrations – Form Integration, Webhook, Spreadsheets, CRM, LMS & Email Automation
20K+ installs
4.9(160)
W2P: Pipedrive CRM Integration for WooCommerce
30+ installs
5.0(4)
WPGSI: Spreadsheet Integration
2K+ installs
4.8(19)
Automatic Product Categories for WooCommerce
400+ installs
5.0(7)
YayBoost – Sales Booster for WooCommerce
20+ installs
AnyAPI – Order to API Automation, Webhooks & No-Code REST API Integration for WooCommerce
fewer than 10 installs
x402 Logo

The agent-readiness stack for the AI shopping era — helping merchants, publishers and SaaS companies get discovered, cited and transacted with by ChatGPT, Perplexity, Claude, Gemini and the custom shopping agents underneath them.

CompanyAgentically Inc. (d/b/a xpay✦)1875 Mission St, Ste 103San Francisco, CA 94103, United Stateslegal@xpay.sh · privacy@xpay.sh
or ask your AI app
Company
About xpayAgency PartnersGitHubDiscordllms.txt
DevelopersDocumentationAPI ReferenceSDKs & LibrariesQuickstart GuideOpenAPI Spec
Stay Updated
Occasional product updates and agent-readiness playbooks from xpay (Agentically Inc.) — typically a couple of emails a month. Double opt-in: we email you a link to confirm before sending anything, and every email has one-click unsubscribe.
Social
  • For Publishers
    • News
    • Finance
    • Dev / Tech
    • Travel
    • View all verticals
  • Agent Feed
    • AI Search Engines
    • RAG Builders
    • Browser Agents
    • Vertical Research
    • Browse full catalog
  • Agent-Ready Index
    • SaaS Pricing Database
    • Agent-Ready SaaS Index
    • Verified band
    • AI & ML
    • Sales & CRM
  • Products
    • Pricing Widget
    • Monetize MCP Server
    • Paywall
    • Smart Proxy
    • Monetize AI Agents
    • xpay x402 Facilitator
  • Agentic Economy
    • Timeline
    • Resources
    • Manifesto
    • Stack
  • Agentic Commerce
    • Get listed
    • ChatGPT Ads
    • How ChatGPT Ads work
    • ChatGPT Ads · Apparel
    • ChatGPT Ads · Health & Beauty
    • xpay Listings · Amazon + Google
    • Pricing
    • Free audit
    • Shopify
    • WooCommerce
    • Apparel & Accessories
    • Health & Beauty
    • Overview
  • Commerce Index
    • Shopify apps directory
    • Agentic Commerce Ready Index
    • Methodology
    • Pet brands · WooCommerce
    • Pet brands · Shopify
  • Marketplace
    • 🛍️ xpay.deals — agentic storefront for deals
  • Protocols
    • Overview
    • x402
    • MPP
    • UCP
    • ACP
    • AP2
    • TAP
    • A2A
  • Agent Frameworks
    • Overview
    • LangChain
    • CrewAI
    • Claude MCP
    • AutoGPT
    • LangChain vs Mastra
    • LangGraph vs Pydantic AI
  • Company
    • About xpay
    • Blog
    • Docs
    • GitHub
  • Free prompts
    • Ecommerce prompts
    • Email marketing prompts
    • Product description prompts
    • Facebook ad prompts
    • Skincare prompts
    • Supplement prompts
    • Wine prompts
    • Electronics prompts

© 2025 Agentically Inc. All rights reserved.
Privacy PolicyTerms of UseAcceptable Use Policy