Skip to main content
🎁 Limited time: Get 1 month free on any paid plan β€” no credit card required. Start your free trial β†’
πŸ›’

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"