Skip to main content
🏪

Shopify

Match your Shopify orders with bank transactions in one click.

Setup Guide

  1. Install the BSM app from the Shopify App Store (search "BSM Bank Reconciliation").
  2. After installing, open the app from your Shopify admin sidebar.
  3. Go to Settings and paste your BSM API key.
  4. Click "Test Connection" to verify.
  5. Navigate to the Reconciliation tab to upload a bank statement and match orders.

API Key for Shopify

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"