Linkit
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

  1. Go to WordPress Admin → Plugins → Add New → Upload Plugin
  2. Upload the .zip file and click Install Now
  3. Activate the plugin

Configuration

Navigate to WooCommerce → Linkit Settings and configure:

SettingDescription
Linkit URLYour Linkit instance URL (e.g. https://app.linkit.works)
API KeyPlugin key from Linkit admin → Settings → Integrations
Webhook SecretShared secret for HMAC-SHA256 webhook signatures

How It Works

The plugin hooks into WooCommerce order lifecycle events:

  • Order CreatedPOST {linkit_url}/api/v1/webhooks/orders/create
  • Order UpdatedPOST {linkit_url}/api/v1/webhooks/orders/updated

Each webhook includes:

  • X-Linkit-Plugin-Key header for authentication
  • X-Linkit-Signature header 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}