📝
WordPress
Upload and reconcile bank statements from your WordPress admin.
Setup Guide
- Download the BSM Reconciliation plugin from below.
- Go to your WordPress admin → Plugins → Add New → Upload Plugin.
- Upload the bsm-reconciliation.zip file and activate the plugin.
- Go to Tools → BSM Reconciliation → Settings.
- Enter your BSM API key and verify the connection.
- Upload both your bank statement and expected transactions to reconcile.
API Key for WordPress
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"