Plugins
WooCommerce Plugin
Install and configure the Linkit WooCommerce bridge plugin for WordPress.
WooCommerce Bridge Plugin
Forwards WooCommerce order events to your Linkit instance via webhooks.
Download
Download woocommerce-linkit-wp-plugin.zip
Requirements
- WordPress 5.8+
- WooCommerce 6.0+
- PHP 7.4+
Installation
- Go to WordPress Admin → Plugins → Add New → Upload Plugin
- Upload the
.zipfile and click Install Now - Activate the plugin
Configuration
Navigate to WooCommerce → Linkit Settings and configure:
| Setting | Description |
|---|---|
| Linkit URL | Your Linkit instance URL (e.g. https://app.linkit.works) |
| API Key | Plugin key from Linkit admin → Settings → Integrations |
| Webhook Secret | Shared secret for HMAC-SHA256 webhook signatures |
How It Works
The plugin hooks into WooCommerce order lifecycle events:
- Order Created →
POST {linkit_url}/api/v1/webhooks/orders/create - Order Updated →
POST {linkit_url}/api/v1/webhooks/orders/updated
Each webhook includes:
X-Linkit-Plugin-Keyheader for authenticationX-Linkit-Signatureheader with HMAC-SHA256 signature- Full order payload (items, customer, totals, shipping)
REST Endpoints
The plugin also registers a health endpoint on your WordPress site:
GET /wp-json/linkit/v1/health
GET /wp-json/linkit/v1/push-order/{id}