🛒
WooCommerce
Reconcile your WooCommerce orders against bank statements automatically.
Setup Guide
- Download the BSM WooCommerce plugin from the plugins directory below.
- Go to your WordPress admin → Plugins → Add New → Upload Plugin.
- Upload the bsm-bank-statement-matcher.zip file and click Install.
- Activate the plugin and go to WooCommerce → Settings → BSM tab.
- Paste your BSM API key (created below) and click "Verify Connection".
- 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"