Skip to main content
🛒

WooCommerce

Reconcile your WooCommerce orders against bank statements automatically.

Setup Guide

  1. Download the BSM WooCommerce plugin from the plugins directory below.
  2. Go to your WordPress admin → Plugins → Add New → Upload Plugin.
  3. Upload the bsm-bank-statement-matcher.zip file and click Install.
  4. Activate the plugin and go to WooCommerce → Settings → BSM tab.
  5. Paste your BSM API key (created below) and click "Verify Connection".
  6. Navigate to WooCommerce → Bank Reconciliation to start matching.

Download Plugin

Download the latest version of the BSM WooCommerce plugin.

API Key for WooCommerce

Quick Start Example

# Upload a bank statement via API
curl -X POST https://app.bankstatementmatcher.com/api/v1/jobs \
  -H "Authorization: Bearer bsm_your_api_key" \
  -F "bank=@statement.pdf" \
  -F "expected=@orders.csv"

# Check job status
curl https://app.bankstatementmatcher.com/api/v1/jobs/{job_id} \
  -H "Authorization: Bearer bsm_your_api_key"

# Get results
curl https://app.bankstatementmatcher.com/api/v1/jobs/{job_id}/results \
  -H "Authorization: Bearer bsm_your_api_key"