Source type

WooCommerce Source Configuration

WooCommerce sources receive order, product, customer, coupon, and subscription webhooks with WooCommerce signature verification.

WOO_COMMERCEPOST, PUT, PATCH, DELETEWebhook Signing SecretCommerce
WooCommerce sends webhook traffic to a FastHook source, FastHook validates the provider contract, records the request, and routes accepted events through connections to destinations.WooCommerceProviderPOST, PUT, PATCH, DELETESignedFastHookSource URLWOO_COMMERCEProvider credentialsignatureVerify before queue401 on auth failure405 on wrong methodAcceptedRequestverified: trueConnections route the accepted request to destinationsFilters, transformations, retries, replay, and destination signatures stay downstream from source verification.

WooCommerce configuration

Create a WooCommerce source, keep POST and PUT and PATCH and DELETE enabled, and provide the configured Webhook Signing Secret values for provider signature. FastHook uses these settings to validate each WooCommerce delivery before it enters the routing workflow.

Source Type

WOO_COMMERCE

Allowed methods

POST, PUT, PATCH, DELETE

Authentication

Provider signature

Credential fields

Webhook Signing Secret

WooCommerce source config
{
  "type": "WOO_COMMERCE",
  "config": {
    "auth_type": "PROVIDER_SIGNATURE",
    "auth": {
      "provider": "WOO_COMMERCE",
      "webhook_signing_secret": "provider-secret"
    },
    "allowed_http_methods": ["POST","PUT","PATCH","DELETE"]
  }
}

WooCommerce request contract

FastHook computes base64 HMAC-SHA256 over the raw body and compares it with x-wc-webhook-signature.

POSTPUTPATCHDELETE

WooCommerce headers

Preserve x-wc-webhook-signature, x-wc-webhook-topic when sending WooCommerce test deliveries. FastHook evaluates this request context before accepting the payload, so missing or modified values remain visible as rejected requests instead of routed events.

x-wc-webhook-signature

Base64 HMAC-SHA256 signature over the raw body.

x-wc-webhook-topic

WooCommerce topic, useful for routing.

WooCommerce setup

  1. Create a WooCommerce webhook and use the FastHook Source URL as the delivery URL.
  2. Paste the WooCommerce webhook secret into FastHook.
  3. Route by x-wc-webhook-topic for order, product, customer, or coupon branches.

Continue with WooCommerce