🏪
Shopify
Match your Shopify orders with bank transactions in one click.
Setup Guide
- Install the BSM app from the Shopify App Store (search "BSM Bank Reconciliation").
- After installing, open the app from your Shopify admin sidebar.
- Go to Settings and paste your BSM API key.
- Click "Test Connection" to verify.
- 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"