Skip to main content

Zapier

Connect BSM to 5,000+ apps using Zapier automations.

Setup Guide

  1. Go to zapier.com and search for "BSM Bank Statement Matcher".
  2. Create a new Zap and select BSM as the trigger or action.
  3. When prompted, enter your BSM API key to authenticate.
  4. Set up your trigger (e.g., "New Job Completed") or action (e.g., "Create Reconciliation Job").
  5. 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"