⚡
Zapier
Connect BSM to 5,000+ apps using Zapier automations.
Setup Guide
- Go to zapier.com and search for "BSM Bank Statement Matcher".
- Create a new Zap and select BSM as the trigger or action.
- When prompted, enter your BSM API key to authenticate.
- Set up your trigger (e.g., "New Job Completed") or action (e.g., "Create Reconciliation Job").
- Test and enable your Zap.
API Key for Zapier
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"