Files
melissa-uploader/Entities/EXAMPLE/entity.json
T
blance 1c26d85751 Make insurance file type configurable per entity (pdf vs tif)
CAMBS, RMI, CONSENSIO, and INLAND always export TIFs into the daily date
folder instead of PDFs, so engine.ps1's hardcoded "*.pdf" filter silently
found nothing to upload (no error, just "No PDFs" for every practice).
Added optional entity.json field "insurance_file_type" (defaults to "pdf"
when omitted, so existing entities are unaffected); the PT STMT split logic
already worked on filename regardless of extension, so no other changes
needed.
2026-07-05 19:45:53 -05:00

23 lines
481 B
JSON

{
"workflow": "insurance+patient",
"insurance_file_type": "pdf",
"ftps": {
"host": "ftp.example.com",
"port": 21,
"tls": true,
"username": "shared-username",
"password": "shared-password",
"insurance_path": "/{practice}/Insurance",
"pdf_path": "/{practice}/PDF"
},
"sftp": {
"host": "sftp.example.com",
"port": 22,
"username": "shared-username",
"password": "shared-password",
"patient_path": "/{practice}/Patient"
}
}