Process a loan application packet
Split a mixed packet into typed, extracted records.
Before you start
The shape of the problem
Step 1 — Classify everything
python -c "
import base64, glob, json
files = [{'content': base64.b64encode(open(p,'rb').read()).decode()}
for p in sorted(glob.glob('packet/*.pdf'))]
json.dump({'files': files}, open('classify-bulk.json','w'))
"
curl -X POST "https://api-docai-uat.uptiq.ai/classify/bulk" \
-H "X-Api-Key: $DOCAI_API_KEY" \
-H "Content-Type: application/json" \
--data-binary @classify-bulk.jsonStep 2 — Route on type and confidence
Step 3 — Extract what matters
Step 4 — Assemble the record
Step 5 — Check completeness against your policy
Step 6 — Screen for document integrity
What a good outcome looks like
Outcome
Meaning
Related pages
Last updated

