How to Set Up Fujitsu ScanSnap to Automatically Send Documents to DocuElevate
This guide walks you through configuring a Fujitsu ScanSnap scanner to automatically upload scanned documents to DocuElevate for AI-powered processing and storage.
Supported ScanSnap Models
This guide applies to the following ScanSnap models:
- iX1600 / iX1500 / iX1400 – Wi-Fi and USB, ScanSnap Home software
- iX500 / iX100 – USB/Wi-Fi, ScanSnap Manager software
- S1300i / S1100i – USB, ScanSnap Manager software
Note: ScanSnap Home (for newer models) and ScanSnap Manager (for older models) differ in their profile/job configuration interface. Both methods are covered below.
Method 1: Scan to Folder → DocuElevate Watched Folder
This is the simplest method and works with all ScanSnap models.
Step 1: Configure DocuElevate's Watched Folder
Add the following to your DocuElevate .env file and restart the service:
WATCH_FOLDER_ENABLED=true
WATCH_FOLDER_PATH=/srv/scan-inbox
WATCH_FOLDER_INTERVAL=10
Create the directory and set permissions:
mkdir -p /srv/scan-inbox
chmod 777 /srv/scan-inbox
If running DocuElevate in Docker, mount this folder into the container in your docker-compose.yaml:
services:
api:
volumes:
- /srv/scan-inbox:/srv/scan-inbox
worker:
volumes:
- /srv/scan-inbox:/srv/scan-inbox
Step 2: Configure ScanSnap Home (iX1600/iX1500/iX1400)
- Open ScanSnap Home on your computer.
- Click + to create a new profile.
- Select Save to folder as the action.
- Configure the profile:
- Folder:
/srv/scan-inbox(or a local folder that syncs to it) - File format: PDF
- Image quality: Normal or Better
- Color mode: Auto
- Scanning side: Both sides (auto)
- Enable Convert to searchable PDF if your ScanSnap and ScanSnap Home version support it.
- Name the profile "DocuElevate" and save.
Now, pressing the scan button while this profile is active will send the scanned PDF directly to the watched folder.
Step 3: Configure ScanSnap Manager (older models)
- Right-click the ScanSnap Manager icon in the system tray.
- Select Scan Button Settings.
- Choose the Save tab.
- Set Image saving folder to
/srv/scan-inbox(or use a shared network path). - Under File format, select PDF.
- Click OK to save.
Method 2: Scan to Cloud Storage → DocuElevate Sync
If you already use Dropbox, Google Drive, or OneDrive with ScanSnap, you can leverage those integrations to feed documents into DocuElevate.
Using Dropbox
- In ScanSnap Home, create a profile with action Save to Dropbox.
- Set the destination folder to
ScanSnap/(or any folder). - In DocuElevate settings, configure Dropbox as your storage provider and point DocuElevate to monitor/pull from that folder.
- DocuElevate will process new documents as they appear in Dropbox.
Using Google Drive
- Create a ScanSnap profile that saves to Google Drive under a dedicated folder (e.g.,
ScanSnap/Inbox). - Configure DocuElevate's Google Drive integration to use that folder as a source/destination.
Method 3: Scan to Email → DocuElevate
ScanSnap can send scanned documents as email attachments. Pair this with the email-to-DocuElevate bridge described in the HP Printer Guide for automatic ingestion.
- In ScanSnap Home, create a profile with action Send by E-mail.
- Configure the recipient address as your DocuElevate-monitored mailbox.
- Set file format to PDF.
- The email bridge script will pick up the attachment and upload it to DocuElevate.
Method 4: ScanSnap Cloud (iX1600 / ScanSnap Home 3.x+)
The ScanSnap iX1600 supports ScanSnap Cloud, which can send directly to cloud services.
- Open the ScanSnap Home app or use the printer's touchscreen.
- Configure a ScanSnap Cloud profile that saves to Google Drive or Dropbox.
- Point DocuElevate to monitor that cloud folder.
Recommended Scan Settings
| Setting | Recommended Value |
|---|---|
| File Format | PDF (Searchable PDF if available) |
| Image Quality | Normal (200 DPI) for text, Better (300 DPI) for photos |
| Color Mode | Auto (detects black/white vs color) |
| Scanning Side | Both Sides (Auto) |
| Compression | Medium |
| Rotate | Auto |
| Remove blank pages | Yes |
| Correct skewed scans | Yes |
Automating with ScanSnap Home Profiles
You can create multiple profiles in ScanSnap Home for different document types:
| Profile | Settings | Notes |
|---|---|---|
| Documents | B&W, 200 DPI, PDF | For invoices, letters, contracts |
| Photos | Color, 300 DPI, PDF | For photo documents |
| Receipts | B&W, 200 DPI, PDF, Remove blank pages | For expense reports |
| Business Cards | Color, 300 DPI, JPEG | May require separate OCR |
Each profile can be assigned to the scanner's shortcut button (on models with a touchscreen).
Setting Up One-Button Scanning
On the ScanSnap iX1600 with its touchscreen:
- Tap the profile name (e.g., "DocuElevate") on the scanner's display.
- The scanner will use that profile for the next scan.
- Press the physical Scan button.
- The document is scanned and automatically delivered to DocuElevate's watched folder.
On models without a touchscreen:
- Set the "DocuElevate" profile as the default profile in ScanSnap Manager/Home.
- Press the Scan button — the document goes directly to DocuElevate.
Troubleshooting
Files appear in the folder but DocuElevate doesn't process them?
→ Check that WATCH_FOLDER_ENABLED=true in your .env and that the worker can read the folder:
docker logs document_worker --tail 50
ScanSnap can't find the network folder?
→ Ensure the folder is shared over SMB/CIFS (Windows share). See the HP Printer Setup guide for Samba configuration.
Scanned PDFs have poor text recognition?
→ Increase scan resolution to 300 DPI. Enable "Convert to searchable PDF" in ScanSnap Home if available.
Files are processed twice (duplicates)?
→ Enable duplicate detection in DocuElevate settings. Check Troubleshooting for deduplication options.
ScanSnap doesn't appear in ScanSnap Home after network change?
→ Re-run the ScanSnap network setup wizard. Ensure the scanner and your computer are on the same Wi-Fi network/subnet.